Skip to main content
POST
/
api
/
billing-groups
Create Billing Group.
curl --request POST \
  --url https://api.example.com/api/billing-groups \
  --header 'Content-Type: application/json' \
  --data '
{
  "clientID": 123,
  "name": "<string>",
  "primaryContactID": 123,
  "address1": "<string>",
  "address2": "<string>",
  "address3": "<string>",
  "suburb": "<string>",
  "state": "<string>",
  "postcode": "<string>",
  "country": "<string>",
  "description": "<string>"
}
'
{
  "value": 123
}

Body

application/json
clientID
integer<int32>
name
string | null
primaryContactID
integer<int32>
address1
string | null
address2
string | null
address3
string | null
suburb
string | null
state
string | null
postcode
string | null
country
string | null
description
string | null

Response

200 - application/json

OK

value
integer<int32>