Skip to main content
GET
/
v1
/
partner
/
customers
/
{customerId}
Get a customer
curl --request GET \
  --url https://api.test.doola.com/v1/partner/customers/{customerId} \
  --header 'Authorization: <api-key>'
{
  "payload": {
    "doolaCustomerId": "<string>",
    "email": "founder@example.com",
    "firstName": "Ada",
    "lastName": "Lovelace",
    "countryOfResidence": "USA",
    "phoneNumber": "+12125550100",
    "created": true,
    "companies": [
      {
        "doolaCompanyId": "<string>",
        "name": "Acme Labs LLC",
        "entityType": "LLC",
        "state": "DE"
      }
    ]
  },
  "error": {}
}

Authorizations

Authorization
string
header
required

Partner API key. Send the raw key as the Authorization header value — e.g. dk_test_… in sandbox or dk_live_… in production. Generate and rotate keys in the doola Partner Portal.

Path Parameters

customerId
string
required

doola customer ID (KSUID).

Response

200 - */*

OK

payload
object

A partner customer.

error
object