Skip to main content
POST
/
orgs
/
{org_id}
/
views
/
{view_id}
/
move
Move an item in a view
curl --request POST \
  --url https://api.useinvent.com/orgs/{org_id}/views/{view_id}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_id": "<string>",
  "group_value": "<string>",
  "after": "<string>",
  "before": "<string>"
}
'
null

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

view_id
string
required

View ID

Body

item_id
string
required
Maximum string length: 128
group_value
string | null

Board only — new group_by value. Pass null for the unmatched group. Omit to leave the field value unchanged.

Maximum string length: 1024
after
string

Neighbor item id this one should come after. Required for kind='board'.

Maximum string length: 1024
before
string

Neighbor item id this one should come before. Required for kind='board'.

Maximum string length: 1024

Response

200 - application/json