Skip to main content
GET
/
invites
List pending invites
curl --request GET \
  --url https://slog.ai/invites \
  --header 'slog-api-key: <api-key>'
{
  "invites": [
    {
      "id": "inv_01jqinvite001",
      "email": "[email protected]",
      "role": "MEMBER",
      "teamRole": "MEMBER",
      "teamIds": [
        "team_01jqteam0001"
      ],
      "createdAt": "2026-05-15T10:00:00.000Z",
      "invitedBy": {
        "id": "user_01jquser0001",
        "name": "Alex Johnson",
        "email": "[email protected]",
        "avatarUrl": null
      }
    }
  ]
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Response

Pending invites.

invites
object[]