isPostCodeQuotable
Returns whether a post code is quotable and has multiple TDSPs or load zones.
Arguments
The post code to check.
Returns
IsQuotableOutputTypePossible Errors
Allowed Viewers
Required Permissions
(No)Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query IsPostCodeQuotable($postcode: String!) {
isPostCodeQuotable(postcode: $postcode) {
hasMultipleTdspsOrLoadZones
isQuotable
}
}
Variables
{
"postcode": "interesting-win-culture-boy-candidate"
}
Response
{
"data": {
"isPostCodeQuotable": {
"hasMultipleTdspsOrLoadZones": true,
"isQuotable": true
}
}
}