POST /blueprints
Create a new blueprint with auto-generated short_id and change tracking
/blueprints
POST
Create a new blueprint with auto-generated short_id and change tracking
| Key | Type | Example | Description |
|---|---|---|---|
| authorization required | string |
"Bearer access_token"
|
Access token
|
| Key | Type | Example | Description |
|---|---|---|---|
| name optional | string |
"example-string"
|
Blueprint name
|
| description optional | string |
"example-string"
|
Blueprint description
|
| category optional | string |
"example-string"
|
Blueprint category
|
| tags optional | array |
["example-string"]
|
Blueprint tags
|
{
"_meta": {
"guid": "example-string",
"entity": 42,
"created": 42,
"modified": 42,
"updated": 42
},
"name": "User Registration Workflow",
"description": "Automates user registration with email verification and profile setup",
"short_id": "TpQ8K3mN9xVz",
"category": "authentication",
"tags": [
"user-management",
"automation",
"email"
],
"status": "draft",
"version": "1.2.3",
"is_published": false,
"created_by_user_guid": "example-string",
"last_modified_by_user_guid": "example-string"
}
{
"error": "INVALID_ACCESS_TOKEN",
"code": 401
}
| Status | Error Code | Description |
|---|---|---|
401 |
INVALID_ACCESS_TOKEN |
Authentication required or invalid token |
| Permission | Description |
|---|---|
Bearer token |
Access token required via Authorization header, x-authtoken, x-token, query param, or cookie |
blueprints_create |
Required scope: blueprints_create |
Back to Blueprints Return to the Blueprints category to view other endpoints All API Categories Browse all available API categories