Skip to main content

GetInvitesResponseModel

statusboolean

Whether the request succeeded.

Example: true
messagestring

Human-readable description of the result.

Example: Getting invites successful
invites object[]

An array of objects containing details about invitations that have been sent.

  • Array [
  • idinteger

    Unique numeric identifier.

    Example: 2058
    emailstring

    User email address.

    statusstring

    Current lifecycle state of the resource.

    Example: CONFIRMATION_PENDING
    created_atstring<date-time>

    ISO 8601 UTC timestamp marking when the resource was created.

    Example: 2026-05-07T11:47:30Z
  • ]
  • GetInvitesResponseModel
    {
    "status": true,
    "message": "Getting invites successful",
    "invites": [
    {
    "id": 2058,
    "email": "[email protected]",
    "status": "CONFIRMATION_PENDING",
    "created_at": "2026-05-07T11:47:30Z"
    }
    ]
    }