Reference for https://rest.interfax.net/outbound/documents/{ID}
Url: https://rest.interfax.net/outbound/documents/{ID}
HTTP Method: GET
| Message direction | Format | Body |
|---|---|---|
| Request | N/A | The Request body is empty. |
| Response | Xml | Example,Schema |
| Response | Json | Example |
The following is an example response Xml body:
<UploadedDocument> <userId>String content</userId> <fileName>String content</fileName> <fileSize>2147483647</fileSize> <uploaded>2147483647</uploaded> <uri>String content</uri> <creationTime>1999-05-31T11:20:00</creationTime> <lastusageTime>1999-05-31T11:20:00</lastusageTime> <status>String content</status> <disposition>String content</disposition> <sharing>String content</sharing> </UploadedDocument>
The following is an example response Json body:
{
"userId":"String content",
"fileName":"String content",
"fileSize":2147483647,
"uploaded":2147483647,
"uri":"String content",
"creationTime":"\/Date(928149600000+0000)\/",
"lastusageTime":"\/Date(928149600000+0000)\/",
"status":"String content",
"disposition":"String content",
"sharing":"String content"
}
The following is the response Xml Schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="UploadedDocument" nillable="true" type="UploadedDocument" />
<xs:complexType name="UploadedDocument">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="userId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="fileName" type="xs:string" />
<xs:element minOccurs="1" maxOccurs="1" name="fileSize" type="xs:int" />
<xs:element minOccurs="1" maxOccurs="1" name="uploaded" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="uri" type="xs:string" />
<xs:element minOccurs="1" maxOccurs="1" name="creationTime" type="xs:dateTime" />
<xs:element minOccurs="1" maxOccurs="1" name="lastusageTime" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="status" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="disposition" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="sharing" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:schema>