본문으로 건너뛰기

인증 토큰 교환

POST 

/open/authorization/commands/exchange-token

인증 토큰 교환

Request

### Content-Type별 요청의 JSON Schema

{
"application/json": {
"schema": {
"required": [
"key"
],
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "KOS 팀으로 부터 전달 받은 API Key",
"format": "uuid"
}
},
"title": "protos.open.ExchangeTokenCommand"
}
}
}

Responses

OK

### Status Code별 응답의 JSON Schema

{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "OpenAPI 사용을 위한 Auth Token",
"format": "uuid"
}
},
"title": "protos.open.ExchangeTokenResponse"
}
}
}
}
}