Create an Azure Application using AuthCode obtained through PKCE flow
Select
SaaS
Customer Managed
Create an Azure Application using AuthCode obtained through PKCE flow
- application/json
Request Body
- applicationId string
Application ID of the application registered in Azure AD
- tenantId string
Azure Tenant ID
- replyUrlSet string
Redirect URI used in the PKCE flow
- codeChallenge string
Code challenge generated using PKCE method
- authCode string
Authorization code obtained after user consent
- scope string
Space-separated list of permissions the application is requesting during OAuth authorization
Responses
- 200
- 400
- 403
- 404
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
- applicationId string
Application ID of the created application
- applicationName string
Application Name of the created application
- tenantId string
Azure Tenant ID of the user authorizing the application
- tenantName string
Azure Tenant Name of the user authorizing the application
- redirectUri string
Redirect URI added in the application
credentialId object
Credential details of the application
id int32name string
{
"applicationId": "string",
"applicationName": "string",
"tenantId": "string",
"tenantName": "string",
"redirectUri": "string",
"credentialId": {
"id": 0,
"name": "string"
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Not Found
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...