Path parameters

idstringrequired

The ID of the project to remove.

Response

idstring

The unique identifier for this project.

objectstring

This will always contain project for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

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

blutui.agency('studio').projects.remove('9c17d680-e0af-4f00-9e28-08c4e38e89e0')
Response
{
  "id": "9c17d680-e0af-4f00-9e28-08c4e38e89e0",
  "object": "project",
  "deleted": true
}

Was this helpful?