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