POST api/v1/addmovebyFace

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
req
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "NU_machine": 1,
  "InOutMode": 2,
  "lati": 3.1,
  "longi": 4.1,
  "UserID": 1,
  "FaceImageBase64": "sample string 2"
}

text/xml

Sample:
<FaceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api">
  <FaceImageBase64>sample string 2</FaceImageBase64>
  <InOutMode>2</InOutMode>
  <NU_machine>1</NU_machine>
  <UserID>1</UserID>
  <lati>3.1</lati>
  <longi>4.1</longi>
</FaceRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "data": null,
  "rowcount": 1,
  "status": true,
  "msg_error": "sample string 3"
}

text/xml

Sample:
<outdata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api">
  <data i:nil="true" />
  <msg_error>sample string 3</msg_error>
  <rowcount>1</rowcount>
  <status>true</status>
</outdata>