# Get Advised Invoice Recipient ID v3.1
The API can be used to check if the recipient is available on Peppol to receive invoices.
# Header fields
Fieldname | Description |
---|---|
SOAPAction | Mandatory http://api.everbinding.nl/v3_1/GetAdvisedInvoiceRecipientId |
# Request fields
Fieldname | Description |
---|---|
SenderPartyId | The PartyId which is sending the invoice. |
ReferenceIdSet | A set of partyIds for which you want to do the lookup. |
# Example request
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetAdvisedInvoiceRecipientId xmlns="http://api.everbinding.nl/v3_1/">
<SenderPartyId>0106:sender</SenderPartyId>
<ReferenceIdSet>
<string>0106:recipient</string>
<string>0190:recipient</string>
</ReferenceIdSet>
</GetAdvisedInvoiceRecipientId>
</soap:Body>
</soap:Envelope>
# Response fields
Fieldname | Description |
---|---|
ReferenceId | Identifier if found on Peppol or an exception |
# Response 200
<?xml version="1.0" encoding="utf-8"?>
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<GetAdvisedInvoiceRecipientIdResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://api.everbinding.nl/v3_1/">
<ReferenceId>NL:OINO:RECIPIENT</ReferenceId>
</GetAdvisedInvoiceRecipientIdResponse>
</SOAP:Body>
</SOAP:Envelope>