API Docs

Organizations

scope: user-account

Retrieve account details for the organization associated with the authenticated OAuth client. This endpoint returns the organization's profile, contact information, and address.

Endpoints

GET
/v0/organization

Get organization details for the authenticated client

Get Organization

Returns the organization profile linked to the current OAuth token. No parameters required.

GET /v0/organization
{
"id": "1",
"createdAt": "2022-04-09T05:27:35.043Z",
"updatedAt": "2022-04-18T11:12:29.472Z",
"name": "Acme Corp",
"website": "https://acme.com",
"contact": {
"name": "John Doe",
"phoneNumber": "+1 (555) 123-4567"
},
"address": {
"addressline1": "123 Main St",
"addressline2": "Suite 400",
"zipcode": "90001",
"city": "Los Angeles",
"country": "US",
"state": "CA"
}
}

Response Fields

ParameterTypeDescription
id*stringUnique organization ID
createdAt*ISO 8601Creation timestamp
updatedAt*ISO 8601Last update timestamp
namestringOrganization name
websitestringBusiness website URL
contact*objectPrimary contact details
contact.namestringContact person name
contact.phoneNumberstringContact phone number
address*objectOrganization address
address.addressline1stringStreet address line 1
address.addressline2stringStreet address line 2
address.zipcodestringZIP or postal code
address.citystringCity
address.countrystringCountry code (e.g. US)
address.statestringState or province