POST
/
v2
/
contacts
curl --request POST \
  --url https://api.eda.prisme.ai/v2/contacts \
  --header 'Content-Type: application/json' \
  --header 'X-Prismeai-API-Key: <api-key>' \
  --data '{
  "email": "<string>",
  "ids": [
    "<string>"
  ],
  "firstName": "<string>",
  "lastName": "<string>",
  "authProvider": "<string>",
  "status": "pending",
  "platformRole": "<string>",
  "groups": [
    "<string>"
  ]
}'
{
  "size": 123,
  "contacts": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "language": "<string>",
      "photo": "<string>",
      "status": "pending",
      "meta": {},
      "groups": [
        "<string>"
      ],
      "id": "<string>"
    }
  ]
}

Authorizations

X-Prismeai-API-Key
string
header
required
connect.sid
string
cookie
required

Query Parameters

page
number

Page number

limit
number

Page size

Body

application/json

Response

200
application/json

Success Response

The response is of type object.