Skip to main content
GET
/
v2
/
custom-field
/
workspace
/
{workspaceId}
cURL
curl --request GET \
  --url https://api.gptmaker.ai/v2/custom-field/workspace/{workspaceId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "jsonName": "<string>",
  "description": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "type": "STRING",
  "archived": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspaceId
string
required

ID do workspace

Query Parameters

page
integer

Número da página

pageSize
integer

Tamanho da página

query
string

Filtro para os campos customizados

Response

Lista de campos

id
string

Id do campo

name
string

nome do campo

jsonName
string

nome do arquivo JSON

description
string

descrição do campo

createdAt
string

data de criação do campo

updatedAt
string

data de atualização do campo

type
enum<string>
Available options:
STRING,
DATE,
DATE_TIME,
NUMBER,
BOOLEAN,
MONEY
archived
boolean

mostra se está arquivado ou não

I