事業者情報の取得
GET/office
事業者情報(事業者名、事業者番号)を取得します。
Required Scopes
必要なスコープ | mfc/admin/office.read |
---|
Request
Header Parameters
Authorization BearerTokenrequired
"Bearer <アクセストークン>"
Responses
- 200
- 401
- 403
- 500
事業者情報
- application/json
- Schema
- Example (from schema)
Schema
office
object
office_code string
office_name string
{
"office": {
"office_code": "1234-5678",
"office_name": "株式会社テスト"
}
}
Bearer Tokenが指定されていない、または有効なTokenではない場合
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "error messages"
}
必要なScopeが足りない場合
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "error messages"
}
認可サーバ内でエラーが発生した場合
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "error messages"
}
Loading...