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_LINE1SENDER_ADDRESS_LINE2SENDER_CITYSENDER_COUNTRYSENDER_EMAILSENDER_NAMESENDER_PHONESENDER_POSTAL_CODESENDER_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
}
}