Billing Platform API
- Retrieve By Id Country
Retrieve Filtered Country
Save Country
Update Country
Upsert Country
Delete Country
Retrieve By Id Country
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 serverhttps://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/COUNTRY/{id}
- https://my.billingplatform.com/demogm/rest/2.0/COUNTRY/{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/COUNTRY/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'sessionId: string'Response
application/json
{ "retrieveResponse": { "UpdatedUserId": "string", "CreatedUserId": "string", "Created": "string", "Updated": "string", "Alpha2_Code": "string", "Code": "string", "Id": "string", "CountryName": "string" } }
- Mock serverhttps://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/COUNTRY
- https://my.billingplatform.com/demogm/rest/2.0/COUNTRY
- cURL
- JS
- Go
- Ruby
- Java 8
curl -i -X GET \
'https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/COUNTRY?queryAnsiSql=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'sessionId: string'Response
application/json
{ "retrieveResponse": { "UpdatedUserId": "string", "CreatedUserId": "string", "Created": "string", "Updated": "string", "Alpha2_Code": "string", "Code": "string", "Id": "string", "CountryName": "string" } }
- Mock serverhttps://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/COUNTRY
- https://my.billingplatform.com/demogm/rest/2.0/COUNTRY
- cURL
- JS
- Go
- Ruby
- Java 8
curl -i -X POST \
https://bp-api-docs-v3.redocly.app/_mock/cwid_206_manual/rest/2.0/COUNTRY \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'sessionId: string' \
-d '{
"brmObjects": {
"UpdatedUserId": "string",
"CreatedUserId": "string",
"Created": "string",
"Updated": "string",
"Alpha2_Code": "string",
"Code": "string",
"Id": "string",
"CountryName": "string"
}
}'Response
application/json
{ "retrieveResponse": { "UpdatedUserId": "string", "CreatedUserId": "string", "Created": "string", "Updated": "string", "Alpha2_Code": "string", "Code": "string", "Id": "string", "CountryName": "string" } }