Azure credentials - List All
Gets a list of all Azure Credentials set under a project.
GET https://{envUri}/api/v1/projects/{projectId}/azure/credentials
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
envUri | path | true | string | Url of the target platform. |
project | path | true | string | The project identifier which uniquely identify your project in Evolution Platform. |
Responses
Name | Type | Description |
---|---|---|
200 OK | List of credentials | GET successful. The operation returns the list of credentials. |
Other Status Codes | Error response | Error response describing why the operation failed. |
Header content
Name | Type | Description |
---|---|---|
X-Total-Count | integer | number total of items |
X-Result-Count | integer | number of returned items |
Request Body
Name | Type | Description |
---|---|---|
id | uuid | Identifier of the azure credential in Evolution Platform |
projectId | string | Identifier of the project in Evolution Platform |
name | string | Name of the azure credential in Evolution Platform |
csp | string | Name of the Cloud Service Provider (CSP) |
description | string | Description of the azure credential |
projectName | string | Name of the project in Evolution Platform |
expiration | string | The expiration date of the authentication token or client secret. |
Security
Type: oauth2
Authorization URL: https://api.orange.com/oauth/v3/token
Examples
Request
GET https://{envUri}/api/v1/projects/projectId/azure/credentials
Sample response
Status code: 200 (OK)
[
{
"id": "29f85f64-5717-4562-b3fc-2c963f66afa6",
"projectId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name":"CredentialsAzure",
"csp":"AZURE",
"description":"This set of credentials allow provisionning on Azure",
"projectName": "orchestrator",
"expirationDate":"2025-06-15"
}
]