Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the application
Response
Successfully retrieved resources
Resources
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/apps/{id}/resources \
--header 'Authorization: Bearer <token>'
{
"resources": [
{}
]
}
Retrieves the ArgoCD resources for the specified application.
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/apps/{id}/resources \
--header 'Authorization: Bearer <token>'
{
"resources": [
{}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Id of the application
Successfully retrieved resources
Resources
Was this page helpful?