Applicationの更新
- 印刷する
- PDF
Applicationの更新
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
Applicationを更新します。
リクエスト
- PUT /applications/{applicationId}
リクエストパス
パラメータ | タイプ | 必須の有無 | 説明 | 制限事項 |
---|---|---|---|---|
applicationId | String | Y | Application Id |
リクエストボディ
{
"name" : "string",
"applicationType" : "string",
"applicationUrl" : "string",
"description" : "string",
"mbrLoginAllow" : "string",
"protocol" : "string",
"redirectUris" : ["string"],
"clientAuthMethod" : "string",
"accessType" : "string",
"grantTypes" : ["string"],
"scopes" : ["string"],
"accessTokenValidity" : "number",
"refreshTokenValidity" : "number",
"consentPage" : {
"applicationName" : {
"ko" : "string",
"en" : "string",
"ja" : "string"
},
"useLanguages" : ["string"],
"defaultLanguage" : "string",
"usePurposeDesc" : {
"ko" : "string",
"en" : "string",
"ja" : "string"
},
"usePeriodDesc" : {
"ko" : "string",
"en" : "string",
"ja" : "string"
},
"dataTransferAbroad" : "boolean",
"dataTransferCountry" : {
"ko" : "string",
"en" : "string",
"ja" : "string"
},
"dataRecipients" : {
"ko" : "string",
"en" : "string",
"ja" : "string"
},
"dataRecipientsContact" : {
"ko" : "string",
"en" : "string",
"ja" : "string"
}
}
}
パラメータ | 必須の有無 | タイプ | 説明 | 制限事項 |
---|---|---|---|---|
name | Y | String | application name | |
applicationType | N | String | application Type: app、web | |
applicationUrl | N | String | application Url | |
description | N | String | application description | |
mbrLoginAllow | N | String | メインアカウントログインは可能かどうか: ALLOW、DENY | |
protocol | N | String | Applicationの protocol: OAUTH2 | |
redirectUris | N | Array | [Oauth2] redirect Uriリスト | |
clientAuthMethod | N | String | [Oauth2] auth method: client_secret_basic、client_secret_post、none | |
grantTypes | N | Array | [Oauth2] grant typeリスト: authorization_code、refresh_token、implicit | |
accessType | N | String | [Oauth2] access type: confidential、public | |
scopes | N | Array | [Oauth2] scopeリスト: profile、openid、groups | |
accessTokenValidity | N | Number | [Oauth2] access token期限切れ時間 | |
refreshTokenValidity | N | Number | [Oauth2] refresh token期限切れ時間 | |
consentPage.applicationName | N | Object | [ConsentPage] 提供を受ける者 | |
consentPage.useLanguages | N | Array | [ConsentPage] 使用可能な言語: ko、en、ja | |
consentPage.defaultLanguage | N | String | [ConsentPage] 基本言語 | |
consentPage.usePurposeDesc | N | Object | [ConsentPage] 使用目的 | |
consentPage.usePeriodDesc | N | Object | [ConsentPage] 使用期間 | |
consentPage.dataTransferAbroad | N | Boolean | [ConsentPage] 海外移転を許可するかどうか: true、false | |
consentPage.dataTransferCountry | N | Object | [ConsentPage] 海外移転先の国 | 海外移転を許可するかどうかが trueの場合、必ず入力 |
consentPage.dataRecipients | N | Object | [ConsentPage] 移転を受ける者 | 海外移転を許可するかどうかが trueの場合、必ず入力 |
consentPage.dataRecipientsContact | N | Object | [ConsentPage] 移転を受ける者の連絡先 | 海外移転を許可するかどうかが trueの場合、必ず入力 |
リクエスト時に含まれないパラメータは変更されず、含まれるパラメータのみ変更されます。
レスポンス
レスポンスボディ
{
"success" : "boolean"
}
パラメータ | タイプ | 説明 | 制限事項 |
---|---|---|---|
success | boolean | 成功かどうか |
エラー
下記のエラーコードは、このアクション(Action)で発生する特徴的なエラーです。エラーレスポンス形式の詳細は、ErrorResponseをご参照ください。
共通して発生するエラーの詳細は、NAVERクラウドプラットフォーム APIをご参照ください。
HTTP status code | エラーコード | エラーメッセージ |
---|---|---|
400 | 400 | |
400 | 9016 |
この記事は役に立ちましたか?