API ReferenceConsole APIInvites

Remove invite

DELETEapi.blutui.com/v1/agencies/{username}/invites/{id}

Remove a team member's invite from your agency.

Path parameters

idstringrequired

The ID of the invite to remove.

Response

import Blutui from 'blutui'

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

blutui.agency('studio').invites.remove('9dc1b356-6397-41d6-a177-bf88113d2084')
JSON Response
{
  "id": "9dc1b356-6397-41d6-a177-bf88113d2084",
  "object": "invite",
  "deleted": true
}
idstring

The unique identifier for this invite.

objectstring

This will always contain invite for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

Last updated on