GET https://api.ap1.datadoghq.com/api/v2/app-builder/blueprints https://api.ap2.datadoghq.com/api/v2/app-builder/blueprints https://api.datadoghq.eu/api/v2/app-builder/blueprints https://api.ddog-gov.com/api/v2/app-builder/blueprints https://api.us2.ddog-gov.com/api/v2/app-builder/blueprints https://api.datadoghq.com/api/v2/app-builder/blueprints https://api.us3.datadoghq.com/api/v2/app-builder/blueprints https://api.us5.datadoghq.com/api/v2/app-builder/blueprints
Overview List available app blueprints.
This endpoint requires
any
of the following permissions:
apps_runapps_writeconnections_readconnections_writeArguments Query Strings The number of blueprints to return per page. Defaults to 10. Maximum is 100.
The page of results to return. Starts at 0.
Response OK
The response for listing available blueprints.
Expand All
An array of blueprint metadata.
The attributes of a blueprint metadata resource.
The timestamp when the blueprint was created.
A description of what the blueprint does.
The human-readable name of the blueprint.
The unique slug identifier of the blueprint.
Tags associated with the blueprint.
The background style of the blueprint tile.
The fully qualified name of the action used as the tile icon.
The timestamp when the blueprint was last updated.
The resource type for a blueprint.
Allowed enum values: blueprint
{
"data" : [
{
"attributes" : {
"created_at" : "" ,
"description" : "" ,
"name" : "AWS Service Manager" ,
"slug" : "aws-service-manager" ,
"tags" : [],
"tile_background" : "string" ,
"tile_icon_action_fqn" : "string" ,
"updated_at" : ""
},
"id" : "65bb1f25-52e1-4510-9f8d-22d1516ed693" ,
"type" : "blueprint"
}
]
} Forbidden
API error response.
Expand All
A human-readable explanation specific to this occurrence of the error.
Non-standard meta-information about the error
References to the source of the error.
A string indicating the name of a single request header which caused the error.
A string indicating which URI query parameter caused the error.
A JSON pointer to the value in the request document that caused the error.
Status code of the response.
Short human-readable summary of the error.
{
"errors" : [
{
"detail" : "Missing required attribute in body" ,
"meta" : {},
"source" : {
"header" : "Authorization" ,
"parameter" : "limit" ,
"pointer" : "/data/attributes/title"
},
"status" : "400" ,
"title" : "Bad Request"
}
]
} Too many requests
{
"errors" : [
"Bad Request"
]
} Code Example Copy
# Curl command curl -X GET "https://api.ap1.datadoghq.com "https://api.ap2.datadoghq.com "https://api.datadoghq.eu "https://api.ddog-gov.com "https://api.us2.ddog-gov.com "https://api.datadoghq.com "https://api.us3.datadoghq.com "https://api.us5.datadoghq.com /api/v2/app-builder/blueprints " \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY} " \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY} "