| POST | /Crm/Company/Document/Check |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| IsDocumentOk | form | bool | No | |
| ResponseStream | form | MemoryStream | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Crm/Company/Document/Check HTTP/1.1
Host: 10.10.0.107
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CheckCrmCompanyImportDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Apex.Services.Crm" />
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<CheckCrmCompanyImportDocumentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Apex.Services.Crm">
<IsDocumentOk>false</IsDocumentOk>
<ResponseStream xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.IO">
<__identity i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/System" />
<d2p1:_buffer></d2p1:_buffer>
<d2p1:_capacity>0</d2p1:_capacity>
<d2p1:_expandable>true</d2p1:_expandable>
<d2p1:_exposable>true</d2p1:_exposable>
<d2p1:_isOpen>true</d2p1:_isOpen>
<d2p1:_length>0</d2p1:_length>
<d2p1:_origin>0</d2p1:_origin>
<d2p1:_position>0</d2p1:_position>
<d2p1:_writable>true</d2p1:_writable>
</ResponseStream>
</CheckCrmCompanyImportDocumentResponse>