Reference for http://betafaceapi.com/service_json.svc/GetImageFileInfo
Retrieve image and faces information or processing status using image file SHA-256 hash code
Url: http://betafaceapi.com/service_json.svc/GetImageFileInfo
HTTP Method: POST
Message direction | Format | Body |
---|---|---|
Request | Xml | Example,Schema |
Request | Json | Example |
Response | Xml | Example,Schema |
Response | Json | Example |
The following is an example request Xml body:
<ImageInfoRequestChecksum> <api_key>String content</api_key> <api_secret>String content</api_secret> <img_checksum>String content</img_checksum> </ImageInfoRequestChecksum>
The following is an example request Json body:
{ "api_key":"String content", "api_secret":"String content", "img_checksum":"String content" }
The following is an example response Xml body:
<BetafaceImageInfoResponse> <int_response>2147483647</int_response> <string_response>String content</string_response> <checksum>String content</checksum> <faces> <FaceInfo> <angle>1.26743233E+15</angle> <height>1.26743233E+15</height> <image_uid>1627aea5-8e0a-4371-9022-9b504344e724</image_uid> <person_name>String content</person_name> <points> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> </points> <score>1.26743233E+15</score> <tags> <TagInfo> <confidence>1.26743233E+15</confidence> <name>String content</name> <value>String content</value> </TagInfo> <TagInfo> <confidence>1.26743233E+15</confidence> <name>String content</name> <value>String content</value> </TagInfo> </tags> <uid>1627aea5-8e0a-4371-9022-9b504344e724</uid> <user_points> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> </user_points> <width>1.26743233E+15</width> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </FaceInfo> <FaceInfo> <angle>1.26743233E+15</angle> <height>1.26743233E+15</height> <image_uid>1627aea5-8e0a-4371-9022-9b504344e724</image_uid> <person_name>String content</person_name> <points> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> </points> <score>1.26743233E+15</score> <tags> <TagInfo> <confidence>1.26743233E+15</confidence> <name>String content</name> <value>String content</value> </TagInfo> <TagInfo> <confidence>1.26743233E+15</confidence> <name>String content</name> <value>String content</value> </TagInfo> </tags> <uid>1627aea5-8e0a-4371-9022-9b504344e724</uid> <user_points> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> <PointInfo> <name>String content</name> <type>2147483647</type> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </PointInfo> </user_points> <width>1.26743233E+15</width> <x>1.26743233E+15</x> <y>1.26743233E+15</y> </FaceInfo> </faces> <original_filename>String content</original_filename> <tags> <TagInfo> <confidence>1.26743233E+15</confidence> <name>String content</name> <value>String content</value> </TagInfo> <TagInfo> <confidence>1.26743233E+15</confidence> <name>String content</name> <value>String content</value> </TagInfo> </tags> <uid>1627aea5-8e0a-4371-9022-9b504344e724</uid> </BetafaceImageInfoResponse>
The following is an example response Json body:
{ "int_response":2147483647, "string_response":"String content", "checksum":"String content", "faces":[{ "angle":1.26743233E+15, "height":1.26743233E+15, "image_uid":"1627aea5-8e0a-4371-9022-9b504344e724", "person_name":"String content", "points":[{ "name":"String content", "type":2147483647, "x":1.26743233E+15, "y":1.26743233E+15 }], "score":1.26743233E+15, "tags":[{ "confidence":1.26743233E+15, "name":"String content", "value":"String content" }], "uid":"1627aea5-8e0a-4371-9022-9b504344e724", "user_points":[{ "name":"String content", "type":2147483647, "x":1.26743233E+15, "y":1.26743233E+15 }], "width":1.26743233E+15, "x":1.26743233E+15, "y":1.26743233E+15 }], "original_filename":"String content", "tags":[{ "confidence":1.26743233E+15, "name":"String content", "value":"String content" }], "uid":"1627aea5-8e0a-4371-9022-9b504344e724" }
The following is the request Xml Schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:complexType name="ImageInfoRequestChecksum"> <xs:complexContent mixed="false"> <xs:extension base="BetafaceRequest"> <xs:sequence> <xs:element minOccurs="0" name="img_checksum" nillable="true" type="xs:string" /> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:element name="ImageInfoRequestChecksum" nillable="true" type="ImageInfoRequestChecksum" /> <xs:complexType name="BetafaceRequest"> <xs:sequence> <xs:element minOccurs="0" name="api_key" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="api_secret" nillable="true" type="xs:string" /> </xs:sequence> </xs:complexType> <xs:element name="BetafaceRequest" nillable="true" type="BetafaceRequest" /> </xs:schema>
Additional request Xml Schemas:
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="anyType" nillable="true" type="xs:anyType" /> <xs:element name="anyURI" nillable="true" type="xs:anyURI" /> <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" /> <xs:element name="boolean" nillable="true" type="xs:boolean" /> <xs:element name="byte" nillable="true" type="xs:byte" /> <xs:element name="dateTime" nillable="true" type="xs:dateTime" /> <xs:element name="decimal" nillable="true" type="xs:decimal" /> <xs:element name="double" nillable="true" type="xs:double" /> <xs:element name="float" nillable="true" type="xs:float" /> <xs:element name="int" nillable="true" type="xs:int" /> <xs:element name="long" nillable="true" type="xs:long" /> <xs:element name="QName" nillable="true" type="xs:QName" /> <xs:element name="short" nillable="true" type="xs:short" /> <xs:element name="string" nillable="true" type="xs:string" /> <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" /> <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" /> <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" /> <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" /> <xs:element name="char" nillable="true" type="tns:char" /> <xs:simpleType name="char"> <xs:restriction base="xs:int" /> </xs:simpleType> <xs:element name="duration" nillable="true" type="tns:duration" /> <xs:simpleType name="duration"> <xs:restriction base="xs:duration"> <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" /> <xs:minInclusive value="-P10675199DT2H48M5.4775808S" /> <xs:maxInclusive value="P10675199DT2H48M5.4775807S" /> </xs:restriction> </xs:simpleType> <xs:element name="guid" nillable="true" type="tns:guid" /> <xs:simpleType name="guid"> <xs:restriction base="xs:string"> <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" /> </xs:restriction> </xs:simpleType> <xs:attribute name="FactoryType" type="xs:QName" /> <xs:attribute name="Id" type="xs:ID" /> <xs:attribute name="Ref" type="xs:IDREF" /> </xs:schema>
<xs:schema targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="schema"> <xs:complexType /> </xs:element> </xs:schema>
The following is the response Xml Schema:
<xs:schema xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> <xs:complexType name="BetafaceImageInfoResponse"> <xs:complexContent mixed="false"> <xs:extension base="BetafaceResponse"> <xs:sequence> <xs:element minOccurs="0" name="checksum" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="faces" nillable="true" type="ArrayOfFaceInfo" /> <xs:element minOccurs="0" name="original_filename" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="tags" nillable="true" type="ArrayOfTagInfo" /> <xs:element minOccurs="0" name="uid" type="ser:guid" /> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> <xs:element name="BetafaceImageInfoResponse" nillable="true" type="BetafaceImageInfoResponse" /> <xs:complexType name="BetafaceResponse"> <xs:sequence> <xs:element minOccurs="0" name="int_response" type="xs:int" /> <xs:element minOccurs="0" name="string_response" nillable="true" type="xs:string" /> </xs:sequence> </xs:complexType> <xs:element name="BetafaceResponse" nillable="true" type="BetafaceResponse" /> <xs:complexType name="ArrayOfFaceInfo"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="unbounded" name="FaceInfo" nillable="true" type="FaceInfo" /> </xs:sequence> </xs:complexType> <xs:element name="ArrayOfFaceInfo" nillable="true" type="ArrayOfFaceInfo" /> <xs:complexType name="FaceInfo"> <xs:sequence> <xs:element minOccurs="0" name="angle" type="xs:double" /> <xs:element minOccurs="0" name="height" type="xs:double" /> <xs:element minOccurs="0" name="image_uid" type="ser:guid" /> <xs:element minOccurs="0" name="person_name" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="points" nillable="true" type="ArrayOfPointInfo" /> <xs:element minOccurs="0" name="score" type="xs:double" /> <xs:element minOccurs="0" name="tags" nillable="true" type="ArrayOfTagInfo" /> <xs:element minOccurs="0" name="uid" type="ser:guid" /> <xs:element minOccurs="0" name="user_points" nillable="true" type="ArrayOfPointInfo" /> <xs:element minOccurs="0" name="width" type="xs:double" /> <xs:element minOccurs="0" name="x" type="xs:double" /> <xs:element minOccurs="0" name="y" type="xs:double" /> </xs:sequence> </xs:complexType> <xs:element name="FaceInfo" nillable="true" type="FaceInfo" /> <xs:complexType name="ArrayOfPointInfo"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="unbounded" name="PointInfo" nillable="true" type="PointInfo" /> </xs:sequence> </xs:complexType> <xs:element name="ArrayOfPointInfo" nillable="true" type="ArrayOfPointInfo" /> <xs:complexType name="PointInfo"> <xs:sequence> <xs:element minOccurs="0" name="name" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="type" type="xs:int" /> <xs:element minOccurs="0" name="x" type="xs:double" /> <xs:element minOccurs="0" name="y" type="xs:double" /> </xs:sequence> </xs:complexType> <xs:element name="PointInfo" nillable="true" type="PointInfo" /> <xs:complexType name="ArrayOfTagInfo"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="unbounded" name="TagInfo" nillable="true" type="TagInfo" /> </xs:sequence> </xs:complexType> <xs:element name="ArrayOfTagInfo" nillable="true" type="ArrayOfTagInfo" /> <xs:complexType name="TagInfo"> <xs:sequence> <xs:element minOccurs="0" name="confidence" type="xs:double" /> <xs:element minOccurs="0" name="name" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="value" nillable="true" type="xs:string" /> </xs:sequence> </xs:complexType> <xs:element name="TagInfo" nillable="true" type="TagInfo" /> </xs:schema>
Additional response Xml Schemas:
<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="anyType" nillable="true" type="xs:anyType" /> <xs:element name="anyURI" nillable="true" type="xs:anyURI" /> <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" /> <xs:element name="boolean" nillable="true" type="xs:boolean" /> <xs:element name="byte" nillable="true" type="xs:byte" /> <xs:element name="dateTime" nillable="true" type="xs:dateTime" /> <xs:element name="decimal" nillable="true" type="xs:decimal" /> <xs:element name="double" nillable="true" type="xs:double" /> <xs:element name="float" nillable="true" type="xs:float" /> <xs:element name="int" nillable="true" type="xs:int" /> <xs:element name="long" nillable="true" type="xs:long" /> <xs:element name="QName" nillable="true" type="xs:QName" /> <xs:element name="short" nillable="true" type="xs:short" /> <xs:element name="string" nillable="true" type="xs:string" /> <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" /> <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" /> <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" /> <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" /> <xs:element name="char" nillable="true" type="tns:char" /> <xs:simpleType name="char"> <xs:restriction base="xs:int" /> </xs:simpleType> <xs:element name="duration" nillable="true" type="tns:duration" /> <xs:simpleType name="duration"> <xs:restriction base="xs:duration"> <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" /> <xs:minInclusive value="-P10675199DT2H48M5.4775808S" /> <xs:maxInclusive value="P10675199DT2H48M5.4775807S" /> </xs:restriction> </xs:simpleType> <xs:element name="guid" nillable="true" type="tns:guid" /> <xs:simpleType name="guid"> <xs:restriction base="xs:string"> <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" /> </xs:restriction> </xs:simpleType> <xs:attribute name="FactoryType" type="xs:QName" /> <xs:attribute name="Id" type="xs:ID" /> <xs:attribute name="Ref" type="xs:IDREF" /> </xs:schema>
<xs:schema targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="schema"> <xs:complexType /> </xs:element> </xs:schema>