Skip to main content
PATCH
/
orgs
/
{org_id}
/
records
/
{record_id}
/
fields
/
{field_id_or_key}
Set a single record field value
curl --request PATCH \
  --url https://api.useinvent.com/orgs/{org_id}/records/{record_id}/fields/{field_id_or_key} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": "<unknown>"
}
'
{
  "id": "<string>",
  "table_id": "<string>",
  "archived": true,
  "position": "<string>",
  "values": [
    {
      "id": "<string>",
      "key": "<string>",
      "value": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.useinvent.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication using your API key

Path Parameters

org_id
string
required

Org ID

record_id
string
required

Record ID

field_id_or_key
string
required

Encoded field ID or field key

Body

value
any

Response

200 - application/json
id
string
required
table_id
string
required
archived
boolean
required

Whether the record is archived.

position
string | null
required

The position of the record in the view.

values
object[]
required

The values of the record.