Get document
Retrieves a single document by ID from a namespace.
GET
JavaScript
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Namespace identifier. Alphanumeric characters, hyphens, underscores, and dots. Max 128 characters.
Maximum string length:
128Pattern:
^[A-Za-z0-9-_.]{1,128}$Document identifier. UUID or string up to 64 characters.
Maximum string length:
64Response
Successful response
A document is a record with a required id and arbitrary attributes. Attribute types must conform to the namespace's attributes_schema. If no schema is provided during upsert, one is inferred from the document structure.
Document ID. UUID or string up to 64 characters.
Maximum string length:
64JavaScript