XPlanner

Docs

Unarchive idea

Moves an archived idea back to the active view. Repeating the request safely returns archivedAt=null.


POST

/ideas/{id}/unarchive

ideas:update

Header'lar

Authorization

*
string

API key. Format: Bearer xpl_live_...

Idempotency-Key

*
string

Unique value of 1-255 characters to safely retry the same write request.

Content-Type

string

Use application/json when sending JSON body.

Cevaplar

200

Idea unarchived.

404

No idea found or no access.

cURL

curl -X POST https://api.xplanner.co/v1/ideas/idea_123/unarchive \  -H "Authorization: Bearer $XPLANNER_API_KEY" \  -H "Idempotency-Key: idea-unarchive-001"

Cevap

{  "data": {    "id": "idea_123",    "archivedAt": null  },  "requestId": "req_123"}