Developer Documentation
Endpoints
External Records
Base URL: https://app.kinabase.com/api/v1/
get
collections/{collectionId}/ext/{externalService}/{externalId}
Gets a single record from a collection by external service ID.Parameters
| Name | Location | Type | Description |
|---|---|---|---|
| collectionId * | path | string | Collection ID or Slug |
| externalService * | path | string | External service name |
| externalId * | path | string | External Service ID |
patch
collections/{collectionId}/ext/{externalService}/{externalId}
Updates an existing record in a collection by external service ID.Parameters
| Name | Location | Type | Description |
|---|---|---|---|
| collectionId * | path | string | Collection ID or Slug |
| externalService * | path | string | External service name |
| externalId * | path | string | External service ID |
Request Body
Value to insert
Example request (application/json):
{
"id": null,
"numericId": null,
"data": {
"example-key": {}
},
"external": null
}delete
collections/{collectionId}/ext/{externalService}/{externalId}
Deletes a single record from a collection by external service ID.Parameters
| Name | Location | Type | Description |
|---|---|---|---|
| collectionId * | path | string | Collection ID or Slug |
| externalService * | path | string | External service name |
| externalId * | path | string | External service ID |