---
title: Update an invitation role
description: Changes the role on a pending invitation.
doc_version: 0.1.0-preview
last_updated: 2026-09-14
---

# Update an invitation role

`PATCH /v1/workspaces/{workspaceId}/invitations/{invitationId}`

Changes the role on a pending invitation. Requires an admin key.

## Authentication

Send `Authorization: Bearer <SPARK_API_KEY>`. Read the key from the
SPARK_API_KEY environment variable. Never print it.

## Path parameters

- `workspaceId` (string) — The workspace id.
- `invitationId` (string) — The invitation id.

## Request body

- `role` (string) — New role for the pending invitation. One of: viewer, editor, admin.

## Example request

```bash
curl --request PATCH \
  --url "https://api.beta.graphon.ai/v1/workspaces/wspQ7WsH2Np5L/invitations/invC3d4E5f6G7" \
  --header "Authorization: Bearer $SPARK_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{"role":"viewer"}'
```

## Example response

```json
{
  "id": "invC3d4E5f6G7",
  "workspaceId": "wspQ7WsH2Np5L",
  "email": "grace@example.com",
  "role": "editor",
  "state": "pending",
  "delivery": "queued",
  "expiresAt": "2026-09-21T18:00:00.000Z",
  "revision": 1
}
```

## Sitemap

See the full [sitemap](/sitemap.md) for all pages.
