Skip to main content
GET
/
billing
/
customers
/
{customer_id}
Get Invoicing Customer by ID
curl --request GET \
  --url https://api.meow.com/v1/billing/customers/{customer_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "nickname": "<string>",
  "created_time": "2023-11-07T05:31:56Z",
  "email": "jsmith@example.com",
  "address": {
    "street_line_1": "<string>",
    "street_line_2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "AW",
    "postal_code": "<string>"
  },
  "updated_time": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Path Parameters

customer_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required

The unique identifier for the customer

nickname
string
required

The customer's nickname

created_time
string<date-time>
required

The timestamp when the customer was created

email
string<email> | null

The customer's email address

address
AddressResponse · object

The customer's address details

updated_time
string<date-time> | null

The timestamp when the customer was last updated