POST api/APIBill/AddFace
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| objData | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"user_id": "sample string 1",
"token": "sample string 2",
"face_name": "sample string 3",
"face_id": "sample string 4",
"face_recognized_date": "sample string 5",
"face_recognized_time": "sample string 6",
"dob": "sample string 7",
"gender": "sample string 8"
}
application/xml, text/xml
Sample:
<Faces xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TVSFOCUSAPI.Controllers"> <dob>sample string 7</dob> <face_id>sample string 4</face_id> <face_name>sample string 3</face_name> <face_recognized_date>sample string 5</face_recognized_date> <face_recognized_time>sample string 6</face_recognized_time> <gender>sample string 8</gender> <token>sample string 2</token> <user_id>sample string 1</user_id> </Faces>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
[
{
"result_code": 1,
"result_description": "sample string 2"
},
{
"result_code": 1,
"result_description": "sample string 2"
},
{
"result_code": 1,
"result_description": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfFace xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TVSFOCUSAPI.Controllers">
<Face>
<result_code>1</result_code>
<result_description>sample string 2</result_description>
</Face>
<Face>
<result_code>1</result_code>
<result_description>sample string 2</result_description>
</Face>
<Face>
<result_code>1</result_code>
<result_description>sample string 2</result_description>
</Face>
</ArrayOfFace>