getRatePricing
Retrieve pricing details for specified rates within a defined period using the API. Input rate IDs, start, and end dates to fetch accurate rate pricing data.
Instructions
Returns prices of rates during the specified period
Input Schema
Name | Required | Description | Default |
---|---|---|---|
EndUtc | Yes | End date for pricing period (ISO 8601) | |
RateIds | Yes | Array of rate IDs to get pricing for | |
StartUtc | Yes | Start date for pricing period (ISO 8601) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"EndUtc": {
"description": "End date for pricing period (ISO 8601)",
"type": "string"
},
"RateIds": {
"description": "Array of rate IDs to get pricing for",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"StartUtc": {
"description": "Start date for pricing period (ISO 8601)",
"type": "string"
}
},
"required": [
"RateIds",
"StartUtc",
"EndUtc"
],
"type": "object"
}