| Requires any of the roles: | Client, Admin, Partner |
| PUT | /payment_plan_debts/{Id} |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
@DataContract
open class PaymentPlanDebtsEdit
{
@DataMember(Order=1)
@Validate(Validator="NotNull")
open var Id:Long? = null
@DataMember(Order=2)
@Validate(Validator="NotNull")
open var PaymentPlansId:Long? = null
@DataMember(Order=3)
@Validate(Validator="NotNull")
open var DebtsId:Long? = null
}
open class PaymentPlanDebtsEditResponse
{
@DataMember(Order=1)
open var Id:Long? = null
@DataMember(Order=2)
open var PaymentPlansId:Long? = null
@DataMember(Order=3)
open var DebtsId:Long? = null
@DataMember(Order=5)
open var ResponseStatus:ResponseStatus? = null
}
Kotlin PaymentPlanDebtsEdit DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /payment_plan_debts/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"Id":0,"PaymentPlansId":0,"DebtsId":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Id":0,"PaymentPlansId":0,"DebtsId":0,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}