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 |
|---|---|---|---|
| ERef<Entity> | No | |
| string | Yes | |
| PK<EntityType> | Yes | |
| PK<EntityModel> | Yes | |
| datetime | Yes | |
| boolean |
| No |
| boolean |
| No |
| boolean |
| 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
}