Company logoTrust Center Documentation
API v1 Reference/Accounts/Id

Get account details

Retrieve detailed information about a specific account including contacts, documents, and revision history.

GET
/api/v1/accounts/{id}
AuthorizationBearer <token>

In: header

Path Parameters

idstring

Account ID

Formatuuid

Response Body

fetch("https://app.orbiqhq.com/api/v1/accounts/550e8400-e29b-41d4-a716-446655440000")

{
  "account": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "Burger King",
    "description": "Fast-food chain EU division",
    "review_status": "completed",
    "type": "enterprise",
    "contacts": [
      {
        "id": "contact-123",
        "email": "compliance@burgerking.com",
        "first_name": "Jane",
        "last_name": "Doe"
      }
    ]
  },
  "revisions": [],
  "documents": []
}
Empty
Empty
Empty
Empty

How is this guide?