POST api/User/ContenstPaymentSold

Request Information

URI Parameters

None.

Body Parameters

ContenstUpdateSold
NameDescriptionTypeAdditional information
UploadId

integer

None.

UserId

integer

None.

EventId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "uploadId": 1,
  "userId": 2,
  "eventId": "c2570f4d-0fe0-4aff-afa2-7b77cc3390b2"
}

application/xml, text/xml

Sample:
<ContenstUpdateSold xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.Common">
  <EventId>c2570f4d-0fe0-4aff-afa2-7b77cc3390b2</EventId>
  <UploadId>1</UploadId>
  <UserId>2</UserId>
</ContenstUpdateSold>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PaymentResponsesold
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

SuccessMessage

string

None.

FailureMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "successMessage": "sample string 2",
  "failureMessage": "sample string 3"
}

application/xml, text/xml

Sample:
<PaymentResponsesold xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural_DAL.Common">
  <FailureMessage>sample string 3</FailureMessage>
  <IsSuccess>true</IsSuccess>
  <SuccessMessage>sample string 2</SuccessMessage>
</PaymentResponsesold>