Skip to main content
POST
/
api
/
app-api
/
sip
/
platform
/
v2
/
category
/
fields
/
delete
Delete File Category Fields
curl --request POST \
  --url https://docflow.textin.com/api/app-api/sip/platform/v2/category/fields/delete \
  --header 'Content-Type: application/json' \
  --header 'x-ti-app-id: <api-key>' \
  --header 'x-ti-secret-code: <api-key>' \
  --data '
{
  "workspace_id": "1234567890",
  "category_id": "1234567890",
  "field_ids": [
    "1234567890",
    987654321
  ],
  "table_id": "1234567890"
}
'
{
  "code": 200,
  "msg": "<string>"
}

Authorizations

x-ti-app-id
string
header
required
x-ti-secret-code
string
header
required

Body

application/json
workspace_id
string
required

Workspace ID

Example:

"1234567890"

category_id
string
required

File category ID

Example:

"1234567890"

field_ids
string[]
required

List of field IDs to delete

Example:
["1234567890", 987654321]
table_id
string

Table ID

  • Not provided: Delete regular fields (fields in result.fields)
  • Provided table ID: Delete table fields under the corresponding table (fields in result.tables[].fields)
Example:

"1234567890"

Response

200 - application/json

Successfully deleted file category fields

code
integer
required

Status code

Example:

200

msg
string
required

Status description