Skip to main content

Configure sender information

For each merchant, we recommend configuring default sender information, such as your name, email, and address. You can set up Delivery Gateway to always send shipments with the default sender which makes the process much simpler.

Use the updateMerchantConfigurations mutation to set up default sender information with the following keys:

  • SENDER_ADDRESS_LINE1
  • SENDER_ADDRESS_LINE2
  • SENDER_CITY
  • SENDER_COUNTRY
  • SENDER_EMAIL
  • SENDER_NAME
  • SENDER_PHONE
  • SENDER_POSTAL_CODE
  • SENDER_STATE
note

You can set these up on the Admin Dashboard, too. For each setting and their description, see Merchant reference.

For example, to configure the default name and email address for your sender:

mutation {
updateMerchantConfigurations(
input: [{
key: SENDER_NAME,
value: "Shoppiest Shop",
},
{
key: SENDER_EMAIL,
value: "shoppiestshop@shoppiest.com",
}]
) {
key
value
}
}