Skip to main content
Skip table of contents

Create an Entity

URL

POST https://<tenant>.bubbleppm.com/api/v3/entities/

External Refs

This endpoint supports External Refs. For more information please refer to the documentation here.

Attributes

Name

Type

Default

Required

external_ref

ERef<Entity>

No

name

string

Yes

type

PK<EntityType>

Yes

model

PK<EntityModel>

Yes

init_start_date

datetime

Yes

archived

boolean

False

No

published

boolean

False

No

template

boolean

False

No

Example Payload

CODE
{
  "external_ref": "ABC_123",
  "name": "A new project",
  "type": 1,
  "model": 1,
  "init_start_date": "2023-03-20",
  "archived": true,
  "published": true,
  "template": true
}

Example Response

CODE
{
  "id": 1,
  "external_ref": "ABC_123",
  "name": "A new project",
  "type": 1,
  "model": 1,
  "init_start_date": "2023-03-20",
  "archived": true,
  "published": true,
  "template": true
}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.