openapi: 3.0.1 info: title: Customer.io Broadcasts Customers API description: Specification of the Customer.io APIs for customer messaging and marketing automation. Covers the Track API (track.customer.io - people, events, devices, manual segments, plus the v2 entity/batch endpoints), the App / Transactional API (api.customer.io - transactional send, API-triggered broadcasts, customers, segments, campaigns, newsletters, messages, exports, collections, snippets, sender identities, imports), and the Pipelines / Data Pipelines CDP API (cdp.customer.io - identify, track, page, screen, group, alias, batch). Authentication differs per surface - the Track API uses HTTP Basic auth with site_id:api_key, the App and Pipelines APIs use a Bearer token. termsOfService: https://customer.io/legal/terms-of-service/ contact: name: Customer.io Support email: win@customer.io version: '1.0' servers: - url: https://track.customer.io description: Track API (US region) - url: https://track-eu.customer.io description: Track API (EU region) - url: https://api.customer.io description: App / Transactional API (US region) - url: https://api-eu.customer.io description: App / Transactional API (EU region) - url: https://cdp.customer.io description: Pipelines / Data Pipelines CDP API (US region) - url: https://cdp-eu.customer.io description: Pipelines / Data Pipelines CDP API (EU region) security: - basicAuth: [] - bearerAuth: [] tags: - name: Customers description: App API - look up people, their attributes, segments, and messages. paths: /v1/customers: post: operationId: searchCustomers tags: - Customers summary: Search for people description: Search for people by attributes, segment membership, and other filters. requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/CustomerSearch' responses: '200': description: A list of matching people. '401': $ref: '#/components/responses/Unauthorized' security: - bearerAuth: [] /v1/customers/{customer_id}/attributes: get: operationId: getCustomerAttributes tags: - Customers summary: Get a person's attributes parameters: - name: customer_id in: path required: true schema: type: string responses: '200': description: The person's attributes. '401': $ref: '#/components/responses/Unauthorized' security: - bearerAuth: [] /v1/customers/{customer_id}/segments: get: operationId: getCustomerSegments tags: - Customers summary: Get the segments a person belongs to parameters: - name: customer_id in: path required: true schema: type: string responses: '200': description: The person's segment memberships. '401': $ref: '#/components/responses/Unauthorized' security: - bearerAuth: [] /v1/customers/{customer_id}/messages: get: operationId: getCustomerMessages tags: - Customers summary: Get messages sent to a person parameters: - name: customer_id in: path required: true schema: type: string responses: '200': description: Messages delivered to the person. '401': $ref: '#/components/responses/Unauthorized' security: - bearerAuth: [] components: schemas: CustomerSearch: type: object properties: filter: type: object additionalProperties: true Error: type: object properties: meta: type: object properties: error: type: string errors: type: array items: type: string responses: Unauthorized: description: Authentication failed or credentials missing. content: application/json: schema: $ref: '#/components/schemas/Error' securitySchemes: basicAuth: type: http scheme: basic description: Track API auth. Base-64 encode site_id:api_key and pass it in the Authorization header (Basic ...). bearerAuth: type: http scheme: bearer description: App API and Pipelines API auth. Pass the App API key (or Pipelines source write key) as a Bearer token in the Authorization header.