Gets information about the given external addon
Required permission
Project > ExternalAddons > General > Read
Path parameters
projectId
string requiredID of the projectexternalAddonId
string requiredID of the external addon
Response body
- {object}Response object.
data
{object} requiredResult data.description
stringmax length200pattern^[a-zA-Z0-9.,?\s\\/'"()[\];`%^&*\-_:!]+$environmentId
stringspec
{object}name
string requiredmin length3max length100pattern^[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*$
API
CLI
JS Client
GET /v1/projects/{projectId}/external-addons/{externalAddonId}
GET /v1/teams/{teamId}/projects/{projectId}/external-addons/{externalAddonId}
Example response
200 OK
Details about the external addon.
JSON
{
"data": {
"spec": {
"provider": {
"aws": {
"region": "eu-west-1"
},
"google": {
"region": "us-central1",
"zone": "us-central1-c"
}
}
}
}
}