cURL
curl --request POST \ --url https://api.eda.prisme.ai/v2/contacts \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --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>" } ] }
Retrieve some public contact. Normal users can only search specific email/ids
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number
Page size
Success Response
The response is of type object.
object
Was this page helpful?