- blueprint
- returns all blueprintsGET
- Creates a blueprintPOST
- returns a blueprint by idGET
- Updates a blueprintPATCH
- Deletes a blueprintDELETE
- Returns a list of blueprint ids that match a tag headGET
- Returns a list of tags and their metadata for a blueprintGET
- Resets a list of tags for a blueprint. This will remove existing tags and replace them with the ones passed inPOST
- Deletes all tags for a blueprint.DELETE
- Creates a single tag for a blueprint.POST
- Deletes a single tag for a blueprint.DELETE
- tags
- images
- image
- iamge
Creates an image
POST
/api/images
image
Request
Body Params application/json
id
string
optional
Match pattern:
^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$
image_name
string
optional
image_url
string
optional
created_at
string <date-time>
optional
updated_at
string <date-time>
optional
blueprint_ids
array[string]
optional
Example
{
"id": "string",
"image_name": "string",
"image_url": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"blueprint_ids": [
"string"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/images' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "string",
"image_name": "string",
"image_url": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"blueprint_ids": [
"string"
]
}'
Responses
🟢201Created
application/json
Body
id
string
optional
Match pattern:
^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$
image_name
string
optional
image_url
string
optional
created_at
string <date-time>
optional
updated_at
string <date-time>
optional
blueprint_ids
array[string]
optional
Example
{
"id": "string",
"image_name": "string",
"image_url": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"blueprint_ids": [
"string"
]
}
🟠400Bad Request
🟠401Unauthorized