Get Rate Card
Select
SaaS
Get Ratecard for the Partner.
List Ratecard with sorting and pagination support.
Query Params
Field | Description | Type | Required | Noted |
---|---|---|---|---|
sort | Sort order. | String | False | Supports asc and desc for sortable fields. Default sort is desc:updateTs |
pageNumber | Page Number | Number | False | Page number >=0. default 0 |
pageSize | Page Size | Number | False | Size of each page. default 25. |
Response Body
Field | Description | Type | Notes |
---|---|---|---|
data | List of Ratecard entires | Ratecard Objects Array | See - Ratecard Object |
metadata | List Ratecard metadata | List Metadata Object | See - List Fullfillment Metadata Object |
Ratecard Object
Field | Description | Type | Notes |
---|---|---|---|
orgId | MSP metallic id | UUID | |
orgName | Partner name | String | |
skuName | Service sku name in Metallic | String | |
skuId | Service sku in Metallic | String | |
skuDescription | Metallic sku description | String | |
unit | Unit of measure (1 user,10 vm, etc.) | String | See - Get Usage - Response Body. |
unitPrice | Price for a singlebillingUnit | Double | |
effectiveDate | Effective date | Timestamp | |
expirationDate | Expiration date | Timestamp | |
currency | Billing currency | String |
Query Parameters
- pageNumber integer
Page number in pagination
- pageSize integer
Number of records in page
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Get Rate Card - Success
Schema
data object[]
orgId stringorgName stringskuName stringskuId stringskuDescription stringunitPrice object
oneOf- MOD1
- MOD2
numberinteger int32unit stringeffectiveDate stringexpirationDate stringcurrency stringregion stringmetadata object
sort stringpagination object
pageNumber int32pageSize int32totalRecords int32
{
"data": [
{
"orgId": "DB9FC3D8-9E25-4787-9E18-409BCA6816CF",
"orgName": "fmdevMsp060148",
"skuName": "Metallic Backup for Microsoft Dynamics 365 for Service Providers",
"skuId": "MTSP-D365-USR",
"skuDescription": "Metallic Dynamics 365 Backup & Recovery Essentials Edition, Non-Commit, Monthly Rate",
"unitPrice": 2.16,
"unit": "1.0 user",
"effectiveDate": "2021-07-01",
"expirationDate": null,
"currency": "USD"
}
],
"metadata": {
"sort": "desc:updateTs",
"pagination": {
"pageNumber": 0,
"pageSize": 25,
"totalRecords": 19
}
}
}
{
"data": [
{
"orgId": "DB9FC3D8-9E25-4787-9E18-409BCA6816CF",
"orgName": "fmdevMsp060148",
"skuName": "Metallic Backup for Microsoft Dynamics 365 for Service Providers",
"skuId": "MTSP-D365-USR",
"skuDescription": "Metallic Dynamics 365 Backup & Recovery Essentials Edition, Non-Commit, Monthly Rate",
"unitPrice": 2.16,
"unit": "1.0 user",
"effectiveDate": "2021-07-01",
"expirationDate": null,
"currency": "USD"
}
],
"metadata": {
"sort": "desc:updateTs",
"pagination": {
"pageNumber": 0,
"pageSize": 25,
"totalRecords": 19
}
}
}
Loading...