Skip to main content
PUT
/
api
/
billing-groups
/
{billingGroupId}
Update Billing Group.
curl --request PUT \
  --url https://api.example.com/api/billing-groups/{billingGroupId} \
  --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>"
}
'

Path Parameters

billingGroupId
integer<int32>
required

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

OK