For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesWhite-labelAPI Reference
GuidesWhite-labelAPI Reference
  • Panic API Reference
      • POSTCreate a customer
      • GETGet a customer
      • PUTUpdate a customer
      • POSTSoft-delete a customer
    • Errors & status codes
LogoLogo
Panic API ReferenceCustomers

Get a customer

GET
/panic-api/v2/customers/:customerId
GET
/panic-api/v2/customers/:customerId
$curl https://staging-panic.aura.services/panic-api/v2/customers/178921 \
> -H "Authorization: Bearer <token>"
1{
2 "id": 178921,
3 "firstName": "Thandi",
4 "lastName": "Mokoena",
5 "mobileNumber": "+27821234567",
6 "email": "string",
7 "externalReferenceId": "partner-user-123",
8 "customerSourceId": 12
9}
Retrieves one customer profile visible to the authenticated customer source.
Was this page helpful?
Previous

Update a customer

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

customerIdintegerRequired
Customer identifier.

Response

Customer profile.
idinteger
firstNamestring
lastNamestring
mobileNumberstring
emailstring or nullformat: "email"
externalReferenceIdstring or null
customerSourceIdinteger

Errors

401
Unauthorized Error
404
Not Found Error