Skip to main content
GET
/
customers
Get all customers
curl --request GET \
  --url https://api.orafi.app/v1/customers \
  --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

Response

200 - application/json

List of customers

success
boolean
message
string
data
object[]