v1.0.0
OAS 3.1.0

ProAPIs List Syncer

List syncer microservice syncs contacts between ProAPIs customer portal and the email marketing software. Moreover, the API endpoints can be used to manage customer (public) newsletter subscriptions as well.

Server: https://api.proapis.com/contact-list-syncer/v1

API v1.0 server base path.

Client Libraries

Sync Contact

Body
  • list_ids
    Type:array string[]
    required
    Example["i9qO8ulno892ho1kAH43tUXQ"]
  • email
    Type:string Format: email
    required
  • first_name
    Type:string | nullable
  • last_name
    Type:string | nullable
  • double_opt_in
    Type:boolean
    default: 
    true
Responses
Request Example forPOST/sync-contact
curl https://api.proapis.com/contact-list-syncer/v1/sync-contact \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "list_ids": [
    "i9qO8ulno892ho1kAH43tUXQ"
  ],
  "email": "",
  "first_name": "",
  "last_name": "",
  "double_opt_in": true
}'
{
  "status": true
}

Models