RelayAPI

Reorder shared idea groups

Atomically replaces the complete organization-shared group order using per-group revision fences.

POST
/v1/idea-groups/reorder
AuthorizationBearer <token>

API key (rlay_live_* or rlay_test_). Invite redemption also accepts a server-derived rlay_session_ bearer for a current user session.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Reorder idea groups

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/idea-groups/reorder" \  -H "Content-Type: application/json" \  -d '{    "groups": [      {        "expected_revision": 0,        "id": "string",        "position": 0      }    ]  }'
{  "data": [    {      "color": "string",      "created_at": "2019-08-24T14:15:22Z",      "id": "string",      "is_default": true,      "name": "string",      "position": 0,      "revision": 0,      "updated_at": "2019-08-24T14:15:22Z",      "workspace_id": "string"    }  ]}

Found something wrong? Help us improve this page.