# Blueprint List

API call format

POST /blueprints

Description

Get all available blueprints.

Precondition:

  • Authorization token is needed.

Postcondition:

  • On success response code should be 200
  • On success all available blueprints are returned with details.
  • On failure an error will be returned with the right error code and description.

Example:

[Request] GET https://<base_api_url>/blueprints
[Request Headers] {"Content-Type":"application/json","Accept":"application/json","Authorization":"<IdToken>"}
[Page] https://<base_api_url>/blueprints
[Response] 200
[Request Cookies] []
[Response] 200
[Request Cookies] []
[Response Headers] {"Content-Type":["application/json"],.....}
[Response] 
{
 "items": [
  {
   "id": "<blueprint_id1>",
   "name": "RTMP push input with Youtube/Facebook/Twitch RTMP output",
   "description": "RTMP push input with Youtube/Facebook/Twitch RTMP output",
   "featured": false,
   "tags": []
  },
  {
   "id": "<blueprint_id2>",
   "name": "MediaConnect FEC to HLS and Archive",
   "description": "Media connect rtp fec to hls and archive",
   "featured": false,
   "tags": []
  },
  ...
 ]
}