GET request/clevel/customer/carbonoffset/payment/update
?id={id}&oid={oid}&c={c}
pdates the customer carbon offsetting payment Reference
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
c | string |
None. |
|
id | string |
None. |
|
oid | string |
None. |
Body Parameters
None.
Response Information
Resource Description
CarbonFootPrintPaymentResponseName | Description | Type | Additional information |
---|---|---|---|
CustomerId | integer |
None. |
|
IsPaymentSuccessful | boolean |
None. |
|
PaymentReference | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "customerId": 1, "isPaymentSuccessful": true, "paymentReference": "sample string 2" }
application/xml, text/xml
Sample:
<CLevelcarbon.CarbonFootPrintPaymentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGenius.Api.Models.CLevelCarbon"> <CustomerId>1</CustomerId> <IsPaymentSuccessful>true</IsPaymentSuccessful> <PaymentReference>sample string 2</PaymentReference> </CLevelcarbon.CarbonFootPrintPaymentResponse>
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="CustomerId" 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="IsPaymentSuccessful" True --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="PaymentReference" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e--