Example Request XML
| OAuth 2.0 | |
|---|---|
POST /inboundws/v1/inboundws.asmx HTTP/1.1
Authorization: Bearer {AccessToken}
Host: iws.concordfax.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://iws.concordfax.com/InboundWS/RemoveInboundItemsByID"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<RemoveInboundItemsByID xmlns="https://iws.concordfax.com/InboundWS/">
<authentication>
<UserId>string</UserId>
<Password></Password>
</authentication>
<request>
<DoNotArchiveItems>boolean</DoNotArchiveItems>
<InboundItemIDs>
<string>string</string>
<string>string</string>
</InboundItemIDs>
</request>
</RemoveInboundItemsByID>
</soap:Body>
</soap:Envelope> | |
| Username and password | |
|---|---|
POST /inboundws/v1/inboundws.asmx HTTP/1.1 Host: iws.concordfax.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "https://iws.concordfax.com/InboundWS/RemoveInboundItemsByID" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <RemoveInboundItemsByID xmlns="https://iws.concordfax.com/InboundWS/"> <authentication> <UserId>string</UserId> <Password>string</Password> </authentication> <request> <DoNotArchiveItems>boolean</DoNotArchiveItems> <InboundItemIDs> <string>string</string> <string>string</string> </InboundItemIDs> </request> </RemoveInboundItemsByID> </soap:Body> </soap:Envelope> | |