fitAcceptSchedule
Accept a FiT schedule for a particular account. The schedule must: - have been sent - not have been accepted yet - not be set in the future
Arguments
Returns
FitAcceptScheduleAccept a FiT schedule for a particular account. The schedule must: - have been sent - not have been accepted yet - not be set in the future
Possible Errors
Allowed Viewers
Required Permissions
Can accept fit schedulesQuery 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.
mutation FitAcceptSchedule($input: FitAcceptScheduleInput!) {
fitAcceptSchedule(input: $input) {
fitSchedule {
...FitScheduleTypeFragment
}
}
}
Variables
{
"input": FitAcceptScheduleInput
}
Response
{
"data": {
"fitAcceptSchedule": {
"fitSchedule": FitScheduleType
}
}
}