createQuote
Create a quote request with quoted products that are available in the given postcode.
Arguments
Returns
CreateQuoteCreate a quote request with quoted products that are available in the given postcode.
Possible Errors
Allowed Viewers
Required Permissions
Can create electricity quoteRate Limits
| Key | Steps |
|---|---|
ip |
['1/s'] |
Query Complexity
6Examples
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.
mutation CreateQuote($input: CreateQuoteInput!) {
createQuote(input: $input) {
quote {
...CreateQuoteOutputTypeFragment
}
}
}
Variables
{
"input": CreateQuoteInput
}
Response
{
"data": {
"createQuote": {
"quote": CreateQuoteOutputType
}
}
}