POST api/reversecharge
Adds a reverse charge sender to the allowed list.
Request Information
URI Parameters
None.
Body Parameters
Object containing information about the sender.
ReverseCharge| Name | Description | Type | Additional information |
|---|---|---|---|
|
Sender email address. |
string |
None. |
|
| FullName |
Sender full name. |
string |
None. |
| SendEmail |
Indicates if an email with a link should be sent to the sender. |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"FullName": "sample string 2",
"SendEmail": true
}
application/xml, text/xml
Sample:
<ReverseCharge xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PuntoNeutro.Core.WebApi"> <Email>sample string 1</Email> <FullName>sample string 2</FullName> <SendEmail>true</SendEmail> </ReverseCharge>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReverseSendingInvitation| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Sender name. |
string |
None. |
| Address |
Sender email address. |
string |
None. |
| Url |
URL to send files to the recipient. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Address": "sample string 2",
"Url": "sample string 3"
}
application/xml, text/xml
Sample:
<ReverseSendingInvitation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PuntoNeutro.Core.Users"> <Address>sample string 2</Address> <Name>sample string 1</Name> <Url>sample string 3</Url> </ReverseSendingInvitation>