POST
/
v1
/
custom-object
curl --request POST \
  --url https://platform.thena.ai/v1/custom-object \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-org-id: <api-key>' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "teamId": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "organizationId": "<string>",
  "teamId": "<string>"
}

Authorizations

Authorization
string
header
required

Enter JWT bearer token

x-org-id
string
header
required

Enter organization ID

Body

application/json
name
string
required

The name of the custom object

description
string

The description of the custom object

teamId
string

The team id of the custom object

Response

201
application/json
Operation successful
id
string
required
name
string
required
description
string
required
organizationId
string
required
teamId
string
required