parcelLab Campaigns API

Evaluate campaign targeting and redirect analytics events.

Operations 2

GET /v4/campaign/evaluate/ Evaluate Campaign Targeting #
GET /v4/campaign/redirect/ Campaign Redirect Analytics #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/parcellab-campaigns-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

parcellab-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: parcelLab Campaigns API
  description: 'parcelLab API v4 Enhanced — the REST API for the parcelLab post-purchase

    experience platform. Send orders and trackings, retrieve order status,

    look up pickup/drop-off locations, predict delivery dates, manage return

    registrations and configurations, evaluate marketing campaigns, and

    publish surveys to your customers.


    Regional base URLs are available for EU and US workloads in addition to

    the global endpoint.

    '
  version: '4'
  contact:
    name: parcelLab Developer Support
    url: https://docs.parcellab.com/docs/developers/readme
  license:
    name: Proprietary
    url: https://parcellab.com/legal/terms-of-service/
servers:
- url: https://api.parcellab.com
  description: Global production endpoint
- url: https://api.eu.parcellab.com
  description: EU regional endpoint
- url: https://api.us.parcellab.com
  description: US regional endpoint
security:
- parcellabApiToken: []
tags:
- name: Campaigns
  description: Evaluate campaign targeting and redirect analytics events.
paths:
  /v4/campaign/evaluate/:
    get:
      tags:
      - Campaigns
      summary: Evaluate Campaign Targeting
      operationId: evaluateCampaign
      parameters:
      - in: query
        name: accountId
        schema:
          type: integer
      - in: query
        name: campaignId
        schema:
          type: string
      - in: query
        name: language
        schema:
          type: string
      - in: query
        name: medium
        schema:
          type: string
      - in: query
        name: message
        schema:
          type: string
      - in: query
        name: orderNumber
        schema:
          type: string
      - in: query
        name: preview
        schema:
          type: boolean
      - in: query
        name: status
        schema:
          type: string
      - in: query
        name: trackingId
        schema:
          type: string
      responses:
        '200':
          description: Evaluated campaign content.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
  /v4/campaign/redirect/:
    get:
      tags:
      - Campaigns
      summary: Campaign Redirect Analytics
      operationId: campaignRedirect
      parameters:
      - in: query
        name: campaignId
        schema:
          type: string
      - in: query
        name: trackingId
        schema:
          type: string
      - in: query
        name: eventType
        required: true
        schema:
          type: string
      - in: query
        name: medium
        schema:
          type: string
      - in: query
        name: redirectUrl
        schema:
          type: string
          format: uri
      - in: query
        name: customerSegmentationId
        schema:
          type: string
      - in: query
        name: emailId
        schema:
          type: string
      - in: query
        name: contentType
        schema:
          type: string
      responses:
        '302':
          description: Redirect to target URL.
components:
  securitySchemes:
    parcellabApiToken:
      type: apiKey
      in: header
      name: Authorization
      description: '`Authorization: Parcellab-API-Token <base64(account_id:token)>`. App- generated tokens may instead use the `Bearer <token>` scheme.'