Skip to content

ListRateTier

POST
/rate_tier/query
curl --request POST \
--url https://api.huddlesurety.co/rate_tier/query \
--header 'Content-Type: application/json' \
--data '{ "orgIDIn": [ "example" ], "rateIDIn": [ "example" ] }'

Body

Media typeapplication/json

Body

object
orgIDIn
Array<string>
rateIDIn
Array<string>
Examplegenerated
{
"orgIDIn": [
"example"
],
"rateIDIn": [
"example"
]
}

OK

Media typeapplication/json
Array<object>
object
id
required
string
orgID
required
string
rateID
required
string
threshold
required
number
type
required
string
value
required
number
Examplegenerated
[
{
"id": "example",
"orgID": "example",
"rateID": "example",
"threshold": 1,
"type": "example",
"value": 1
}
]