RyTask docs
REST APIInvites

Accept an invitation → membership at the pre-assigned role (public, token-bearing) (FR-AUTH-011)

View as MarkdownOpen in ChatGPTOpen in Claude
POST
/invites/{token}/accept

Path Parameters

token*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

name+password required only when the invitee has no account yet

Response Body

application/json

curl -X POST "https://example.com/invites/string/accept" \  -H "Content-Type: application/json" \  -d '{}'
{  "accessToken": "string",  "refreshToken": "string",  "expiresIn": 0,  "user": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "email": "user@example.com",    "name": "string",    "emailVerified": true  }}
Empty