Skip to main content

Overview

[TODO] Use the Contact endpoints for all GET (read) operations. For writes (POST / PUT / DELETE) use Call contact CXF events. See Authentication first.

Example: list Contacts (GET)

curl https://{customer}.cxf.app/v1/contacts \
  -H "Authorization: Bearer [TODO_TOKEN]"
{
  "data": [
    { "id": "[TODO]", "[TODO]": "[TODO]" }
  ]
}