POST api/User/TokenRegisteredFirstTime

Request Information

URI Parameters

None.

Body Parameters

HW_USER_APP_TOKEN
NameDescriptionTypeAdditional information
app_id

integer

None.

unique_id

string

None.

token

string

None.

user_id

string

None.

topic_subscribe

boolean

None.

current_stage

integer

None.

current_stage_description

string

None.

created_at

date

None.

created_by

string

None.

modify_at

date

None.

modify_by

string

None.

Request Formats

application/json, text/json

Sample:
{
  "app_id": 1,
  "unique_id": "sample string 2",
  "token": "sample string 3",
  "user_id": "sample string 4",
  "topic_subscribe": true,
  "current_stage": 6,
  "current_stage_description": "sample string 7",
  "created_at": "2026-03-04T03:44:25.8383814+05:00",
  "created_by": "sample string 8",
  "modify_at": "2026-03-04T03:44:25.8383814+05:00",
  "modify_by": "sample string 9"
}

text/html, multipart/form-data

Sample:
{"app_id":1,"unique_id":"sample string 2","token":"sample string 3","user_id":"sample string 4","topic_subscribe":true,"current_stage":6,"current_stage_description":"sample string 7","created_at":"2026-03-04T03:44:25.8383814+05:00","created_by":"sample string 8","modify_at":"2026-03-04T03:44:25.8383814+05:00","modify_by":"sample string 9"}

application/xml, text/xml

Sample:
<HW_USER_APP_TOKEN xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Humwell_DALL.Dto">
  <app_id>1</app_id>
  <created_at>2026-03-04T03:44:25.8383814+05:00</created_at>
  <created_by>sample string 8</created_by>
  <current_stage>6</current_stage>
  <current_stage_description>sample string 7</current_stage_description>
  <modify_at>2026-03-04T03:44:25.8383814+05:00</modify_at>
  <modify_by>sample string 9</modify_by>
  <token>sample string 3</token>
  <topic_subscribe>true</topic_subscribe>
  <unique_id>sample string 2</unique_id>
  <user_id>sample string 4</user_id>
</HW_USER_APP_TOKEN>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'HW_USER_APP_TOKEN'.

Response Information

Resource Description

JsonResponse
NameDescriptionTypeAdditional information
response

response

None.

result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "response": {
    "responseCode": 1,
    "responseMessage": "sample string 2"
  },
  "result": {}
}

text/html, multipart/form-data

Sample:
{"response":{"responseCode":1,"responseMessage":"sample string 2"},"result":{}}

application/xml, text/xml

Sample:
<JsonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Humwell_DALL.Json">
  <response>
    <responseCode>1</responseCode>
    <responseMessage>sample string 2</responseMessage>
  </response>
  <result />
</JsonResponse>