Skip to main content
POST
/
blueprints
Create blueprint
curl --request POST \
  --url https://api.helloannie.com/v1/blueprints \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "templateIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "description": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "createdAt": "<string>",
    "templateIds": [
      "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    ],
    "variables": [
      {
        "name": "<string>",
        "type": "STRING",
        "description": "<string>",
        "isRequired": true
      }
    ]
  }
}

Body

Request body for creating a blueprint

name
string
required

Name for the blueprint

Required string length: 1 - 255
templateIds
string<uuid>[]
required

Template IDs to include in the blueprint

Minimum array length: 1
description
string

Description of the blueprint

Response

Response containing the created blueprint

success
enum<boolean>
required
Available options:
true
data
object
required