Skip to main content

Configure operators

Operators manage pickup point locations. On Delivery Gateway, you can configure two things for the available operators: a title that allows easier identification and a priority.

Use the updateOperatorConfigurations mutation to modify these settings for an operator. It requires:

  • An operator: you can see the available options at OperatorEnum.
  • A key and a value field for each setting: the respective keys are PRIORITY and TITLE.
GraphQL mutation
mutation {
updateOperatorConfigurations(
input: [
{
operator: MOE,
key: PRIORITY,
value: "1"
},
{
operator: MOE,
key: TITLE,
value: "Most Excellent Operator"
}
]
)
}