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/GetInboundItemsByID"
<?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>
<GetInboundItemsByID xmlns="https://iws.concordfax.com/InboundWS/">
<authentication>
<UserId>string</UserId>
<Password></Password>
</authentication>
<request>
<InboundItemIDs>
<string>string</string>
<string></string>
</InboundItemIDs>
<ReqSettings>
<DimeSettings>
<EncryptedItem>boolean</EncryptedItem>
<ItemSecretKeys xsi:nil="true" />
</DimeSettings>
<ItemSecurityMode>
<Chunked>boolean</Chunked>
<DigitallySigned>boolean</DigitallySigned>
<Ecrypted>boolean</Ecrypted>
<EncryptionType>string</EncryptionType>
<UseDIME>boolean</UseDIME>
</ItemSecurityMode>
</ReqSettings>
</request>
</GetInboundItemsByID>
</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/GetInboundItemsByID" <?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> <GetInboundItemsByID xmlns="https://iws.concordfax.com/InboundWS/"> <authentication> <UserId>string</UserId> <Password>string</Password> </authentication> <request> <InboundItemIDs> <string>string</string> <string>string</string> </InboundItemIDs> <ReqSettings> <DimeSettings> <EncryptedItem>boolean</EncryptedItem> <ItemSecretKeys xsi:nil="true" /> </DimeSettings> <ItemSecurityMode> <Chunked>boolean</Chunked> <DigitallySigned>boolean</DigitallySigned> <Ecrypted>boolean</Ecrypted> <EncryptionType>string</EncryptionType> <UseDIME>boolean</UseDIME> </ItemSecurityMode> </ReqSettings> </request> </GetInboundItemsByID> </soap:Body> </soap:Envelope> | |