Skip to main content
POST
/
billing
/
customers
Create Invoicing Customer
curl --request POST \
  --url https://api.meow.com/v1/billing/customers \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "nickname": "<string>",
  "email": "jsmith@example.com",
  "address": {
    "street_line_1": "<string>",
    "city": "<string>",
    "country": "AW",
    "street_line_2": "<string>",
    "state": "<string>",
    "postal_code": "<string>"
  }
}
'
{
  "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

Body

application/json
nickname
string
required
Minimum string length: 1
email
string<email>
required
address
AddressRequest · object

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