Organizations
scope: user-accountRetrieve 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/organizationGet 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
| Parameter | Type | Description |
|---|---|---|
id* | string | Unique organization ID |
createdAt* | ISO 8601 | Creation timestamp |
updatedAt* | ISO 8601 | Last update timestamp |
name | string | Organization name |
website | string | Business website URL |
contact* | object | Primary contact details |
contact.name | string | Contact person name |
contact.phoneNumber | string | Contact phone number |
address* | object | Organization address |
address.addressline1 | string | Street address line 1 |
address.addressline2 | string | Street address line 2 |
address.zipcode | string | ZIP or postal code |
address.city | string | City |
address.country | string | Country code (e.g. US) |
address.state | string | State or province |