Create Application
Create an application. The application can be OIDC, API or SAML type, based on the input.
Required permissions:
- project.app.write
Header Parameters
Define the version of the Connect protocol
1Define the timeout, in ms
Request Body
application/json
The ID of the project the application will be created in.
Optionally, provide the unique ID of the new application. If omitted, the system will generate one for you, which is the recommended way. The generated ID will be returned in the response.
Publicly visible name of the application. This might be presented to users if they sign in.
Response Body
application/json
application/json
curl -X POST "https://loading/zitadel.application.v2.ApplicationService/CreateApplication" \ -H "Connect-Protocol-Version: 1" \ -H "Content-Type: application/json" \ -d '{ "apiConfiguration": {} }'{
"applicationId": "string",
"creationDate": "2023-01-15T01:30:15.01Z",
"apiConfiguration": {
"clientId": "string",
"clientSecret": "string"
}
}{
"code": "not_found",
"message": "string",
"details": [
{
"type": "string",
"value": "string",
"debug": {}
}
]
}Was this page helpful?
Application API
Explore the Application API operation in the ZITADEL API. Learn about request parameters, response schemas, and integration details for this endpoint.
Create Application Key
Create Application Key: Create a new application key, which is used to authorize an API application. Key details are returned in the response. They must be stored safely, as it will not be possible to retrieve them again....