Create Customer Account

POST /api/v1/customer-accounts/

Creates a customer account, if the requesting manager has access permissions to it.

Request

Body parameters

circle-info

The code field is required and must be unique.

Name
Required / Optional
Type
Description

code

required

string

must be unique

name

optional

string

name

description

optional

string

description

Phone

optional

string

Phone

address

optional

string

address

email

optional

string

email

Example request

Request body (application/json)
{
    "name": "Test Customer Company 6",
    "code": "tc6"
}

Example responses

Was this helpful?