Skip to main content
GET
/
campaigns
/
{id}
/
customer_metadatas
/
{customer_id}
Get campaign customer metadata for a specific customer
curl --request GET \
  --url https://api.pocketflows.com/campaigns/{id}/customer_metadatas/{customer_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "customer": "<string>",
  "metadata": {},
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the campaign

customer_id
string
required

The ID of the customer

Response

200 - application/json

The CampaignCustomerMetadata object

customer
string
required

The ID of the customer

metadata
object
required

Arbitrary metadata associated with this campaign-customer pair

created_at
string
required

The creation timestamp

updated_at
string
required

The last update timestamp