cURL
curl --request GET \ --url https://api.sippet.ai/api/contacts/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "<string>", "type": "<string>", "attributes": { "full_name": "<string>", "email": "<string>", "notes": "<string>", "phone_e164": "<string>" }, "relationships": {} }, "included": [ "<unknown>" ], "meta": {} }
/contacts/:id operation on Contact resource
JWT for bearer authentication
Relationship paths to include in the response
^()(,())*$
Limits the response fields to only those listed for each type
Show child attributes
{ "Contact": "id,full_name,email,phone_e164,notes"}
Success
A "Resource object" representing a Contact
Was this page helpful?