| Requires any of the roles: | Client, Admin, Partner |
| PUT | /payment_plan_details/{Id} |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | path | long | Yes | |
| PaymentPlansId | body | long | Yes | |
| PlannedDate | body | DateTime | Yes | |
| PlannedAmount | body | double | Yes | |
| PlannedCurrenciesId | body | int | Yes | |
| PaymentsId | body | long | Yes | |
| StatusCodesId | body | long | Yes |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | long | No | |
| PaymentPlansId | form | long | No | |
| PlannedDate | form | DateTime | No | |
| PlannedAmount | form | double | No | |
| PlannedCurrenciesId | form | int | No | |
| PaymentsId | form | long | No | |
| StatusCodesId | form | long | No | |
| ResponseStatus | form | ResponseStatus | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /payment_plan_details/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
PaymentPlansId: 0,
PlannedDate: 0001-01-01,
PlannedAmount: 0,
PlannedCurrenciesId: 0,
PaymentsId: 0,
StatusCodesId: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
PaymentPlansId: 0,
PlannedDate: 0001-01-01,
PlannedAmount: 0,
PlannedCurrenciesId: 0,
PaymentsId: 0,
StatusCodesId: 0,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}