Skip to main content
GET
/
auth
/
{user_uid}
/
invites
List Invites
curl --request GET \
  --url https://api.faces.sh/auth/{user_uid}/invites
{
  "success": true,
  "messages": [],
  "data": [
    {
      "id": 123,
      "invite_key": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "used": true,
      "expires_at": "2023-11-07T05:31:56Z",
      "used_by": "<string>",
      "used_at": "2023-11-07T05:31:56Z"
    }
  ],
  "error": "<string>",
  "meta": {}
}

Headers

authorization
string

Path Parameters

user_uid
string
required

Response

Successful Response

success
boolean
required
messages
string[] | null
data
InviteKeyListItem · object[] | null
error
meta
Meta · object