Endpoints
Records
The records endpoint allows you to create, retrieve, update, and delete title records within Origin Studio.
All record operations follow the JSON:API 1.1 specification.
Base path:
/v1/recordsGet Record
Retrieve a specific record by ID.
Request
GET /v1/records/{id}Example
curl --location 'https://api.stg.studio.fabricdata.com/v1/records/a50599fc8163fa8b' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'Response
Returns a single record resource under data.
Create Record
Create a new record.
Request
Headers
Body
Response
Returns:
201 CreatedNewly created record in JSON:API format
Update Record
Update an existing record.
Request
(Use PATCH for partial updates in JSON:API)
Response
Returns:
200 OKUpdated record resource
Search Record
Find existing record(s).
Request
Response
Returns:
200 OKAll records found under the specific search results.
Last updated