cURL
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 } ] } }
Create a new blueprint by grouping multiple templates together. Variables are aggregated from all templates.
Request body for creating a blueprint
Name for the blueprint
1 - 255
Template IDs to include in the blueprint
1
Description of the blueprint
Response containing the created blueprint
true
Show child attributes