POST api/CentralPayoutProcessor/UpdatePayoutInterval

Request Information

URI Parameters

None.

Body Parameters

PayoutIntervals
NameDescriptionTypeAdditional information
Id

integer

None.

PayoutCycleName

string

None.

PayoutTypeId

PayoutType

None.

Status

boolean

None.

IntervalId

Intervals

None.

DayOfWeek

DayOfWeek

None.

DayOfMonth

integer

None.

TimeOfOperation

string

None.

CreatedBy

integer

None.

DateCreated

date

None.

UpdatedBy

integer

None.

DateUpdated

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "PayoutCycleName": "sample string 2",
  "PayoutTypeId": 1,
  "Status": true,
  "IntervalId": 1,
  "DayOfWeek": 0,
  "DayOfMonth": 1,
  "TimeOfOperation": "sample string 4",
  "CreatedBy": 5,
  "DateCreated": "2024-09-19T18:18:50.717242+01:00",
  "UpdatedBy": 7,
  "DateUpdated": "2024-09-19T18:18:50.717242+01:00"
}

application/xml, text/xml

Sample:
<PayoutIntervals xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
  <CreatedBy>5</CreatedBy>
  <DateCreated>2024-09-19T18:18:50.717242+01:00</DateCreated>
  <DateUpdated>2024-09-19T18:18:50.717242+01:00</DateUpdated>
  <UpdatedBy>7</UpdatedBy>
  <DayOfMonth>1</DayOfMonth>
  <DayOfWeek>Sunday</DayOfWeek>
  <Id>1</Id>
  <IntervalId>Immediately</IntervalId>
  <PayoutCycleName>sample string 2</PayoutCycleName>
  <PayoutTypeId>DepotPayout</PayoutTypeId>
  <Status>true</Status>
  <TimeOfOperation>sample string 4</TimeOfOperation>
</PayoutIntervals>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PayoutIntervals'.

Response Information

Resource Description

VCAPIResponse
NameDescriptionTypeAdditional information
Version

string

None.

dateTime

string

None.

StatusCode

integer

None.

ErrorMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "1.0.0",
  "dateTime": "2024/09/19 18:18:50",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}

application/xml, text/xml

Sample:
<VCAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result />
  <StatusCode>1</StatusCode>
</VCAPIResponse>