POST api/v1/partners/event/change
Change a partner's event.
Request Information
URI Parameters
None.
Body Parameters
ChangePartnerEventBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | ChangePartnerEventRequestModel |
Required |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "sample string 1",
"Key": "sample string 2"
},
"Request": {
"EventCode": "sample string 1",
"Description": "sample string 2",
"EventDate": "sample string 3",
"EventName": "sample string 4",
"EventId": "sample string 5",
"UpdatedBy": "sample string 6",
"Duration": "sample string 7",
"Action": "sample string 8"
}
}
application/xml, text/xml
Sample:
<ChangePartnerEventBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Authentication>
<Id>sample string 1</Id>
<Key>sample string 2</Key>
</Authentication>
<Request>
<Action>sample string 8</Action>
<Description>sample string 2</Description>
<Duration>sample string 7</Duration>
<EventCode>sample string 1</EventCode>
<EventDate>sample string 3</EventDate>
<EventId>sample string 5</EventId>
<EventName>sample string 4</EventName>
<UpdatedBy>sample string 6</UpdatedBy>
</Request>
</ChangePartnerEventBindingModel>
Response Information
Resource Description
OutgoingPartnerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
|
| Response | IPartnerReportResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
},
"Response": null
}
application/xml, text/xml
Sample:
<OutgoingPartnerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
<Response i:nil="true" />
</OutgoingPartnerModel>