Skip to main content

List user invitations

List all the invitations sent to a user.

Path Parameters
    id string required

    The user email to list the invitations for.

Responses

A successful response.


Schema
    invitations object[]
  • Array [
  • id string

    The unique invitation identifier.

    user_id string

    The user email of the invited user.

    org_id string

    The organization id to which the user is invited.

    group_ids string[]

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

    metadata object

    The metadata of the invitation.

    created_at date-time

    The time when the invitation was created.

    expires_at date-time

    The time when the invitation expires.

    role_ids string[]

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

  • ]
GET /v1beta1/users/:id/invitations

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
id — path required
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/users/:id/invitations' \
-H 'Accept: application/json'