Skip to main content
POST
/
contacts
/
migrate
cURL
curl --request POST \
  --url https://app.masivo.ai/api/storefront/v1/contacts/migrate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-account-id: <x-account-id>' \
  --header 'x-timezone: <x-timezone>' \
  --data '{}'
{
  "data": {
    "message": "Contacts batch enqueued successfully"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string<uuid>
required

Your account ID

x-timezone
string
required

Timezone for processing (e.g., 'America/New_York', 'UTC')

Example:

"UTC"

Body

application/json
contacts
object[]
required

Array of contacts to migrate

Required array length: 1 - 10000 elements

Response

Contacts batch enqueued successfully

data
object