Skip to main content
GET
/
data
/
{table_name}
/
{id}
Get Custom Data Record
curl --request GET \
  --url https://api.prod.usesimple.ai/api/v1/data/{table_name}/{id} \
  --header 'Authorization: <api-key>'
{
  "record": {
    "id": 123,
    "organization_id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

table_name
string
required

Custom data table name.

Pattern: ^[A-Za-z0-9_-]+$
id
integer
required

Custom data record ID.

Response

Successful Response

record
Custom Data Record · object
required