Billing Platform API
- Retrieve Filtered Account Packages
Retrieve By Id Account Packages
Save Account Packages
Update Account Packages
Delete Account Packages
Retrieve Filtered Account...
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_PACKAGE/{id}
https://my.billingplatform.com/demogm/rest/2.0/ACCOUNT_PACKAGE/{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_PACKAGE/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'sessionId: string'
Response
application/json
{ "retrieveResponse": { "Created": "string", "Id": "string", "UpdatedUserId": "string", "Updated": "string", "ContractId": 0, "StartDate": "string", "CreatedUserId": "string", "PackageId": 0, "EndDate": "string", "AccountId": "string", "RenewalStartDate": "string" } }
- Mock server
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PACKAGE
https://my.billingplatform.com/demogm/rest/2.0/ACCOUNT_PACKAGE
- 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_PACKAGE?queryAnsiSql=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'sessionId: string'
Response
application/json
{ "retrieveResponse": { "Created": "string", "Id": "string", "UpdatedUserId": "string", "Updated": "string", "ContractId": 0, "StartDate": "string", "CreatedUserId": "string", "PackageId": 0, "EndDate": "string", "AccountId": "string", "RenewalStartDate": "string" } }
- Mock server
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/ACCOUNT_PACKAGE
https://my.billingplatform.com/demogm/rest/2.0/ACCOUNT_PACKAGE
- 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_PACKAGE \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'sessionId: string' \
-d '{
"brmObjects": {
"Created": "string",
"Id": "string",
"UpdatedUserId": "string",
"Updated": "string",
"ContractId": 0,
"StartDate": "string",
"CreatedUserId": "string",
"PackageId": 0,
"EndDate": "string",
"AccountId": "string",
"RenewalStartDate": "string"
}
}'
Response
application/json
{ "retrieveResponse": { "Created": "string", "Id": "string", "UpdatedUserId": "string", "Updated": "string", "ContractId": 0, "StartDate": "string", "CreatedUserId": "string", "PackageId": 0, "EndDate": "string", "AccountId": "string", "RenewalStartDate": "string" } }