Billing Platform API
- Retrieve By Id Account Product Quote
Retrieve Filtered Account Product Quote
Save Account Product Quote
Update Account Product Quote
Delete Account Product Quote
Retrieve By Id Account Pr...
API Reference (1.0)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/
https://my.billingplatform.com/demogm/
- Mock server
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PRODUCT_QUOTE/{id}
https://my.billingplatform.com/demogm/rest/2.0/ACCOUNT_PRODUCT_QUOTE/{id}
- cURL
- JS
- Go
- Ruby
- Java 8
curl -i -X GET \
'https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PRODUCT_QUOTE/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'sessionId: string'
Response
application/json
{ "retrieveResponse": { "ProductId": 0, "AccountId": 0, "PackageProductId": 0, "StartDate": "string", "Rate": "string", "Quantity": "string", "Amount": "string", "TaxAmount": "string", "GrandTotalAmount": "string", "TaxDetails": 0, "DiscountDetails": 0, "RateDetails": 0, "RateSourceId": "string", "RateSource": "string", "AccountProductId": 0, "DiscountAmount": "string", "Id": "string" } }
- Mock server
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PRODUCT_QUOTE
https://my.billingplatform.com/demogm/rest/2.0/ACCOUNT_PRODUCT_QUOTE
- cURL
- JS
- Go
- Ruby
- Java 8
curl -i -X GET \
'https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PRODUCT_QUOTE?queryAnsiSql=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'sessionId: string'
Response
application/json
{ "retrieveResponse": { "ProductId": 0, "AccountId": 0, "PackageProductId": 0, "StartDate": "string", "Rate": "string", "Quantity": "string", "Amount": "string", "TaxAmount": "string", "GrandTotalAmount": "string", "TaxDetails": 0, "DiscountDetails": 0, "RateDetails": 0, "RateSourceId": "string", "RateSource": "string", "AccountProductId": 0, "DiscountAmount": "string", "Id": "string" } }
- Mock server
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PRODUCT_QUOTE
https://my.billingplatform.com/demogm/rest/2.0/ACCOUNT_PRODUCT_QUOTE
- cURL
- JS
- Go
- Ruby
- Java 8
curl -i -X POST \
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PRODUCT_QUOTE \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'sessionId: string' \
-d '{
"brmObjects": {
"ProductId": 0,
"AccountId": 0,
"PackageProductId": 0,
"StartDate": "string",
"Rate": "string",
"Quantity": "string",
"Amount": "string",
"TaxAmount": "string",
"GrandTotalAmount": "string",
"TaxDetails": 0,
"DiscountDetails": 0,
"RateDetails": 0,
"RateSourceId": "string",
"RateSource": "string",
"AccountProductId": 0,
"DiscountAmount": "string",
"Id": "string"
}
}'
Response
application/json
{ "retrieveResponse": { "ProductId": 0, "AccountId": 0, "PackageProductId": 0, "StartDate": "string", "Rate": "string", "Quantity": "string", "Amount": "string", "TaxAmount": "string", "GrandTotalAmount": "string", "TaxDetails": 0, "DiscountDetails": 0, "RateDetails": 0, "RateSourceId": "string", "RateSource": "string", "AccountProductId": 0, "DiscountAmount": "string", "Id": "string" } }