Skip to main content

Overview

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

Example: list Users (GET)

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