Skip to main content
GET
/
customers
/
{customerId}
Get customer by ID
curl --request GET \
  --url https://api.orafi.app/v1/customers/{customerId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "firstname": "<string>",
    "lastname": "<string>",
    "email": "<string>",
    "totalSpent": 123
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

customerId
string
required

Response

200 - application/json

Customer details

success
boolean
message
string
data
object