API ReferenceConsole APIInvites

List all invites

GETapi.blutui.com/v1/agencies/{username}/invites

List all invites in your agency.

Query parameters

limitinteger | default: 10

Limit the number of objects to return, ranging between 1 and 20.

pageinteger | default: 1

The current page used to display the pagination results.

Response

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.agency('studio').invites.list()
JSON Response
{
  "object": "list",
  "data": [
    {
      "id": "9dc1b356-6397-41d6-a177-bf88113d2084",
      "object": "invite",
      "email": "tony@stark.com",
      "role": {
        "id": 2,
        "object": "role",
        "name": "Developer",
        "description": null,
        "is_super": false,
        "created_at": 1690330767,
        "updated_at": 1690330767
      },
      "created_at": 1734552630,
      "updated_at": 1734552630
    },
    {...},
    {...}
  ],
  "meta": {
    "has_more": false,
    "current_page": 1,
    "from": 1,
    "to": 3,
    "total": 3,
    "per_page": 10,
    "last_page": 1
  }
}
objectstring

This will always contain list for this endpoint.

dataarray

An array of up to limit invite resources. If no invites are available, an empty array is returned.

metaobject

Additional information about the list.

Last updated on