Create Customer

Creates a new Stripe customer for the requesting practice group.

SecurityapiKeyAuth and practiceGroupId
Request
Request Body schema: application/json
required
name
required
string
email
string <email>
phone
string
Array of objects or objects
Responses
200

Ok

400

Validation error

401

Unauthorised

404

Not found

500

Unknown error

post/v1/invoicing/customers
Request samples
application/json
{
  • "name": "string",
  • "email": "user@example.com",
  • "phone": "string",
  • "sources": [
    ]
}
Response samples
application/json
{
  • "id": "string",
  • "name": "string",
  • "email": "user@example.com",
  • "phone": "string",
  • "sources": [
    ]
}