POST Client

Request Information

URI Parameters

None.

Body Parameters

ClientRequest
NameDescriptionTypeAdditional information
description

string

None.

email

string

None.

client_token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "description": "sample string 1",
  "email": "sample string 2",
  "client_token": "sample string 3"
}

text/html

Sample:
{"description":"sample string 1","email":"sample string 2","client_token":"sample string 3"}

application/xml, text/xml

Sample:
<ClientRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Core.ClientToken.Contracts">
  <client_token>sample string 3</client_token>
  <description>sample string 1</description>
  <email>sample string 2</email>
</ClientRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ClientResponse
NameDescriptionTypeAdditional information
client_token

string

None.

description

string

None.

email

string

None.

created_at

date

None.

updated_at

date

None.

failure_information

Collection of ErrorResponse

None.

response

Collection of APIResponse

None.

success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "client_token": "sample string 1",
  "description": "sample string 2",
  "email": "sample string 3",
  "created_at": "2024-05-16T22:30:02.0899945+09:00",
  "updated_at": "2024-05-16T22:30:02.0899945+09:00",
  "failure_information": [
    {
      "errorcode": "sample string 1",
      "errormessage": "sample string 2"
    },
    {
      "errorcode": "sample string 1",
      "errormessage": "sample string 2"
    }
  ],
  "response": [
    {
      "responsecode": "sample string 1",
      "responsemessage": "sample string 2"
    },
    {
      "responsecode": "sample string 1",
      "responsemessage": "sample string 2"
    }
  ],
  "success": true
}

text/html

Sample:
{"client_token":"sample string 1","description":"sample string 2","email":"sample string 3","created_at":"2024-05-16T22:30:02.0899945+09:00","updated_at":"2024-05-16T22:30:02.0899945+09:00","failure_information":[{"errorcode":"sample string 1","errormessage":"sample string 2"},{"errorcode":"sample string 1","errormessage":"sample string 2"}],"response":[{"responsecode":"sample string 1","responsemessage":"sample string 2"},{"responsecode":"sample string 1","responsemessage":"sample string 2"}],"success":true}

application/xml, text/xml

Sample:
<ClientResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Core.ClientToken.Contracts">
  <failure_information xmlns="http://schemas.datacontract.org/2004/07/Core">
    <ErrorResponse>
      <errorcode>sample string 1</errorcode>
      <errormessage>sample string 2</errormessage>
    </ErrorResponse>
    <ErrorResponse>
      <errorcode>sample string 1</errorcode>
      <errormessage>sample string 2</errormessage>
    </ErrorResponse>
  </failure_information>
  <response xmlns="http://schemas.datacontract.org/2004/07/Core">
    <APIResponse>
      <responsecode>sample string 1</responsecode>
      <responsemessage>sample string 2</responsemessage>
    </APIResponse>
    <APIResponse>
      <responsecode>sample string 1</responsecode>
      <responsemessage>sample string 2</responsemessage>
    </APIResponse>
  </response>
  <success xmlns="http://schemas.datacontract.org/2004/07/Core">true</success>
  <client_token>sample string 1</client_token>
  <created_at>2024-05-16T22:30:02.0899945+09:00</created_at>
  <description>sample string 2</description>
  <email>sample string 3</email>
  <updated_at>2024-05-16T22:30:02.0899945+09:00</updated_at>
</ClientResponse>