Management code

GET /user/:user_code

Read specified Management codes and Management labels

Detail

Request

No Parameters

Response

Body

Key

Type

Value

code

String

Management code

name

String

Management label

Sample

Request

URL
GET https://*.sacm.jp/public-api/v1/user/tsa99990001

Response

Body
{
  "code":"tsa99990001",
  "name":"API Sample Inc."
}

PUT /user/:user_code

Update specified Management codes and Management labels

Detail

Request

Header
Content-Type: application/json
Body

Key

Type

Value

name

String

Management label (1 - 100 characters) (required)

Response

Body

Key

Type

Value

code

String

Management code

name

String

Management label

Sample

Request

URL
PUT https://*.sacm.jp/public-api/v1/user/tsa99990001
Header
Content-Type: application/json
Body
{
  "name":"Example API.com"
}

Response

Header
Content-Type: application/json
Body
{
  "code":"tsa99990001",
  "name":"Example API.com"
}