Applications
Create Application
Creates a new application for this portal. The application must be assigned to a developer or a team. An application can be registered for various APIs, issuing credentials for API access. If using DCR, an application will be linked to an Identity Provider's application by its client_id.
post/v3/portals/{portalId}/applications
Path parameters
portalIdstring uuid required
Example:f32d905a-ed33-46a3-a093-d8f536af9a8a
The Portal identifier
Request body
Example request
{
"name": "Portal Application",
"description": "A portal application provisioned for a developer by a Portal Admin.",
"labels": {
"env": "production"
},
"auth_strategy_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"owner": {
"id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"type": "developer"
}
}Response
Details about an application in a portal.
Example response
{
"id": "b15e2460-ba40-431d-9df0-4957fcffacda",
"labels": {
"env": "test"
},
"name": "App 1",
"description": "An easy to manage app in a Konnect developer portal",
"registration_count": 4,
"portal": {
"id": "95606071-49c7-4c2e-ae49-8a86d72a8110"
},
"auth_strategy": {
"id": "45606071-49c7-4c2e-ae49-8a86d72a8110",
"name": "API Key",
"credential_type": "key_auth",
"key_names": [
"apikey"
]
},
"created_at": "2022-12-22T19:09:30.712Z",
"updated_at": "2022-12-22T19:09:30.712Z",
"owner": {
"id": "8cd9feff-b4da-4a9f-ba49-cbe83c75ff22",
"type": "developer"
}
}