Skip to main content
PATCH
/
connections
/
{connection_id}
{
  "connection_id": "01J51S0JYV6N7K1030CV1ZKSCA",
  "customer_id": "8a46e581-48ba-498a-9ad0-2ee72582e1af",
  "retailer_id": "01J7SC0NN73R6F5VVSP3ZKPDA3",
  "status": "active",
  "email": "alice@example.com",
  "mobile": "+1234567890"
}

Path Parameters

connection_id
string
required

Body

application/json
customer_id
string | null

A unique identifier used to map connections to customer records in external systems.

Examples:

"8a46e581-48ba-498a-9ad0-2ee72582e1af"

email
string | null

The email of the user

Examples:

"john.doe@example.com"

mobile
string | null

The customer's mobile phone number

Examples:

"+1234567890"

Response

Successful Response

connection_id
string
required

A unique identifier for the connection

Examples:

"01J51S0JYV6N7K1030CV1ZKSCA"

customer_id
string
required

A unique identifier used to map connections to customer records in external systems.

Examples:

"8a46e581-48ba-498a-9ad0-2ee72582e1af"

retailer_id
string
required

The unique identifier for the retailer in the connection

Examples:

"01J7SC0NN73R6F5VVSP3ZKPDA3"

status
enum<string>
required

The status of the connection

Available options:
active,
initialized,
started,
attempted,
exited,
unauthenticated
email
string | null
required

The customer's email address

Examples:

"alice@example.com"

mobile
string | null
required

The customer's mobile phone number

Examples:

"+1234567890"

I