For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Pricing Plan Information

This guide will show you how you can view your Pricing Plan information via an API command.

Get Pricing Plan Information

GET https://console.monogoto.io/priceplan/byCustomerAndNetworkProvider/{CUSTOMER_ID}/{NETWORK_PROVIDER_ID}

Path Parameters

Name
Type
Description

CUSTOMER_ID*

String

Customer API key

NETWORK_PROVIDER_ID*

String

Replace with network provider ID which can be retrieved through the GET Roaming Policy request

Headers

Name
Type
Description

TOKEN_HERE*

String

Your authentication token

CUSTOMER_ID

String

Customer API key

{
    // Response
}

Example using cURL:

curl -X GET \
    --url "https://console.monogoto.io/priceplan/byCustomerAndNetworkProvider/{CUSTOMER_ID}/{NETWORK_PROVIDER_ID}" \
    -H "accept: application/json" \
    -H "Authorization: Bearer {TOKEN_HERE}" \
    -H "apikey: {CUSTOMER_ID}"

Please note that the above shown command needs to be replaced with information:

{TOKEN_HERE} - replace with your token

{CUSTOMER_ID} - replace with your customer API key

{NETWORK_PROVIDER_ID} - replace with network provider ID which can be retrieved through the GET Roaming Policy request

Request example:

Expected result showing network ID and Roaming Policies operators list with their IDs:

Last updated

Was this helpful?