Skip to content

Get document

GET
/documents/{documentId}

Fetch a document by its identifier. The response describes the document's metadata and latest version pointer.

Authorizations

IBinderOAuth2

OAuth 2.0 Client Credentials flow. Obtain a token from the iBinder Identity
Provider, then send it as Authorization: Bearer <token> on every request.

The token endpoint expects grant_type=client_credentials, your client_id,
your client_secret, and scope=ibinder_public.

clientCredentials Flow
Token URL"https://signin.ibinder.com/connect/token"
Scopes:
  • "ibinder_public"

Parameters

Header Parameters

x-ibinder-tenantid*
Type
string
Required

Path Parameters

documentId*

Document identifier (GUID).

Type
string
Required

Responses

The request has succeeded.

application/json
JSON
{
  
"id": "string",
  
"fileName": "string",
  
"folderId": "string",
  
"binderId": "string",
  
"metadata": [
  
  
{
  
  
  
"metadataElementId": "string",
  
  
  
"valueId": "string"
  
  
}
  
],
  
"latestVersionId": "string"
}

Playground

Authorization
Headers
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

Released under the MIT License.