Skip to main content
PATCH
/
organizations
/
{org_id}
Update Organization
curl --request PATCH \
  --url https://management-api.unomiq.com/organizations/{org_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "contract_email": "jsmith@example.com",
  "tax_id": "<string>",
  "address": {
    "street": "",
    "city": "",
    "state": "",
    "postal_code": "",
    "country": ""
  },
  "billing_address": {
    "street": "",
    "city": "",
    "state": "",
    "postal_code": "",
    "country": ""
  }
}
'
{
  "id": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_id
string
required

Body

application/json
name
string | null

Organization/company name

Required string length: 1 - 255
contract_email
string<email> | null

Contract email address

Maximum string length: 255
tax_id
string | null

Tax ID / VAT number (alphanumeric, hyphens, and spaces only)

Maximum string length: 50
address
Address · object

Organization address

billing_address
Address · object

Billing address

Response

Successful Response

id
string
required
updated_at
string
required