Rate Tables
This guide serves as an introduction to how account administrators can view information about rate tables associated with their account.
Permissions level required:
Admin
Get rate tables
GET https://api.maxar.com/account-service/api/v2/rate-tables
This request has no required variables. It returns a list of rate tables along with that rate tables id
, name
, createdDate
, createdBy
, updatedDate
, updatedBy
, numberOfActivations
, rateAmounts
, isDefault
, clientContextId
, and deletdDate
. The id
value is important to record for other requests in this section.
Get rate tables by ID
GET https://api.maxar.com/account-service/api/v2/rate-tables/:rateTableId
To get information about a specific rate table, you need the rateTableId
. To find the rateTableId
, submit the "Get rate tables" request and record the correct "id"
.
Get activations for rate tables
GET https://api.maxar.com/account-service/api/v2/rate-tables/:rateTableId/activations
To get the activation(s) associated with a specific rate table, you need the rateTableId
. To find the rateTableId
, submit the "Get rate tables" request and record the correct "id"
.
Get credit rates for products in rate table
GET https://api.maxar.com/account-service/api/v2/rate-tables/:rateTableId/product-credits
To get the credit rate associated with all products in a specific rate table, you need the rateTableId
. To find the rateTableId
, submit the "Get rate tables" request and record the correct "id"
.
Get credit rate for single product in rate table
GET https://api.maxar.com/account-service/api/v2/rate-tables/:rateTableId/product-credits/:productId
To get the credit rate associated with a specific product in a specific rate table, you need the rateTableId
and the productId
. To find the rateTableId
, submit the "Get rate tables" request and record the correct "id"
. To find the productId
, submit the "Get a list of products" request and record the correct "id"
.
Get rate tables and associated activation numbers
GET https://api.maxar.com/account-service/api/v2/rate-tables/activation-numbers
This request has no required variables. It returns a list of rate tables and the accounts they are associated with.
Get rate tables product credits by activation number
GET https://api.maxar.com/account-service/api/v2/rate-tables/activations/:activationNumber/product-credits
To get the rate table product credits by activation number, you need the activationNumber
of a specific activation. To find the activationNumber
, submit the Get a list of available activations
or the Get an activation by ID
request and record the "activationNumber"
value associated with the activation of interest. The activation number begins with ACT-
.
Get a list of all credit unit types
GET https://api.maxar.com/account-service/api/v2/rate-tables/credit-types
This request has no required variables. It returns a list of credit types associated with your default rate table.
Get a list of product credits for a rate table
GET https://api.maxar.com/account-service/api/v2/rate-tables/product-credits
This request has no required variables. It returns a list of products and their credit costs associated with your default rate table.