Method | /testsite/Services/Gateway.asmx/GetMinimalFileStatus |
Sertifi API Web Service > All Operations Resource Group : /testsite/Services/Gateway.asmx/GetMinimalFileStatus (Method) |
The request body is of type GetMinimalFileStatus.
Name | Description | Data Type |
---|---|---|
pstr_APICode | The API code of the site. This can be found through your Sertifi web interface under Administration -> Account Settings. | xml:string |
pstr_FileID | The id of the relevant file. | xml:string |
The response body is of type GetMinimalFileStatusResponse.
Name | Description | Data Type |
---|---|---|
GetMinimalFileStatusResult | file xml or an error message. | xml:string |
Sample Call:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ser="http://apps.sertifi.net/services/">
<soap:Header/>
<soap:Body>
<ser:GetMinimalFileStatus>
<ser:pstr_APICode>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</ser:pstr_APICode>
<ser:pstr_FileID>dpZaMtBrYvE=</ser:pstr_FileID>
</ser:GetMinimalFileStatus>
</soap:Body>
</soap:Envelope>
Sample Response:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetMinimalFileStatusResponse xmlns="http://apps.sertifi.net/services/">
<GetMinimalFileStatusResult><![CDATA[<?xml version="1.0" encoding="utf-16"?>
<File>
<Code>dpZaMtBrYvE=</Code>
<Name>yadayada reassign</Name>
<Status>1</Status>
<StatusFull>Active</StatusFull>
<Unsigned>1</Unsigned>
<Signed>0</Signed>
<DateCreated>9/29/2014 12:28:52 PM</DateCreated>
<DateLastAction>1/1/0001 12:00:00 AM</DateLastAction>
</File>]]></GetMinimalFileStatusResult>
</GetMinimalFileStatusResponse>
</soap:Body>
</soap:Envelope>