Skip to main content

Get pending invitation

Returns a pending invitation queued for an organization

Path Parameters
    orgId string required
    id string required
Responses

A successful response.


Schema
    invitation object
    id string

    The unique invitation identifier.

    userId string

    The user email of the invited user.

    orgId string

    The organization id to which the user is invited.

    groupIds string[]

    The list of group ids to which the user is invited.

    metadata object

    The metadata of the invitation.

    createdAt date-time

    The time when the invitation was created.

    expiresAt date-time

    The time when the invitation expires.

    roleIds string[]

    The list of role ids to which the user is invited in an organization.

GET /v1beta1/organizations/:orgId/invitations/:id

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
orgId — path required
id — path required
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/organizations/:orgId/invitations/:id' \
-H 'Accept: application/json'