Get application component connections
GET/applications/:applicationId/components/:applicationComponentId/connections
Retrieves the configuration of connected services for given component.
Either (build) version or (git) branch must be provided as query parameter to specify the requested configuration version.
Request
Path Parameters
Possible values: non-empty
Possible values: non-empty
Query Parameters
Header Parameters
CodeNOW API Key
Responses
- 200
- 400
- 401
- 403
- 404
- 422
- 429
- 500
200 response
- application/vnd.codenow.v1+json
- Schema
- Example (from schema)
Schema
Array [
]
connections
object[]
required
An object containing the runtime configuration of the application component.
It represents the configuration file .codenow.config.yaml
.
The user-friendly name or label for the connection.
An internal identifier for the service scaffold, determined by the service type or brand in the case of managed services,
or by the template ID for external services.
Possible values: [MANAGED_COMPONENT
, EXTERNAL
]
The template type is closely associated with the service type and indicates whether it is a MANAGED
service,
provided and maintained by CodeNOW,or EXTERNAL
service, defined by the user and maintained independently outside of CodeNOW.
The unique identifier of the specific service instance connected to the component.
The type of this service instance must match the type
attribute.
{
"connections": [
{
"name": "string",
"type": "string",
"templateType": "MANAGED_COMPONENT",
"instanceId": "string"
}
]
}
The request was unacceptable, often due to missing a required parameter.
No valid API key provided.
The API key doesn't have permissions to perform the request.
Resource not found.
Unprocessable .codenow.config.yaml
Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
Something went wrong on CodeNOW's end.