0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

chore(core): update api doc for create protected app (#5344)

This commit is contained in:
wangsijie 2024-02-05 11:38:01 +08:00 committed by GitHub
parent 265901f1b8
commit 94bc538484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,6 +26,27 @@
"post": {
"summary": "Create an application",
"description": "Create a new application with the given data.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"properties": {
"protectedAppMetadata": {
"description": "The data for protected app.",
"properties": {
"subDomain": {
"description": "The subdomain prefix, e.g., my-site."
},
"origin": {
"description": "The origin of target website, e.g., https://example.com."
}
}
}
}
}
}
}
},
"responses": {
"200": {
"description": "The application was created successfully."