Skip to main content
GET
/
organizations
/
{org_id}
Get Organization
curl --request GET \
  --url https://management-api.unomiq.com/organizations/{org_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "role": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "contract_email": "",
  "tax_id": "",
  "address": {
    "street": "",
    "city": "",
    "state": "",
    "postal_code": "",
    "country": ""
  },
  "billing_address": {
    "street": "",
    "city": "",
    "state": "",
    "postal_code": "",
    "country": ""
  }
}

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

Response

Successful Response

id
string
required
name
string
required
role
string
required
created_at
string
required
updated_at
string
required
contract_email
string
default:""
tax_id
string
default:""
address
Address · object

Address value object.

billing_address
Address · object

Address value object.