sellerAddressDelete Mutation
Deletes an address.
Arguments
#
Response
#
Returns SellerAddressDelete .
Example
#
mutation ($id: ID!) {
sellerAddressDelete(id: $id) {
seller {
id
companyName
slug
status
externalPayoutAccountId
externalPayoutSource
externalPayoutOnboardingUrl
isMarketplaceSeller
identification
defaultCurrency
fulfilledByMarketplace
agreementAcknowledged
canUseInStorefront
pk
externalPayoutStatus
externalPayoutSchedule
agreementDecisionReason
storeDescription
storeDescriptionPlainText
approvedDate
firstProductCreatedDate
firstOrderPlacedDate
fullfilledByMarketplace
created
updated
accountSetupTasksAreDone
}
sellerErrors {
field
message
code
}
address {
id
firstName
lastName
companyName
streetAddress1
streetAddress2
city
cityArea
postalCode
countryArea
phone
isDefaultShippingAddress
isDefaultBillingAddress
}
}
}
3
{
"id": "aWQ6ODg="
}
3
{
"sellerAddressDelete": {
"seller": {
"id": "aWQ6ODI=",
"companyName": "Acme Inc.",
"slug": "sample-slug",
"status": "APPLYING",
"externalPayoutAccountId": "acct_1OKOMlCr0GpVz8ls",
"externalPayoutSource": "NAUTICAL_PAYMENTS_STRIPE",
"externalPayoutOnboardingUrl": "https://connect.stripe.com/setup/e/acct_1OKOMlCr0GpVz8ls/gDWmFe2IFpXC",
"isMarketplaceSeller": true,
"identification": [
"12-3456789"
],
"defaultCurrency": "string",
"fulfilledByMarketplace": true,
"agreementAcknowledged": "2022-03-06T08:23:45.000Z",
"canUseInStorefront": true,
"pk": 42,
"externalPayoutStatus": true,
"externalPayoutSchedule": "daily",
"agreementDecisionReason": "string",
"storeDescription": "string",
"storeDescriptionPlainText": "string",
"approvedDate": "2022-03-06T08:23:45.000Z",
"firstProductCreatedDate": "2022-03-06T08:23:45.000Z",
"firstOrderPlacedDate": "2022-03-06T08:23:45.000Z",
"fullfilledByMarketplace": true,
"created": "2022-03-06T08:23:45.000Z",
"updated": "2022-03-06T08:23:45.000Z",
"accountSetupTasksAreDone": true
},
"sellerErrors": [
{
"field": "string",
"message": "string",
"code": "GRAPHQL_ERROR"
}
],
"address": {
"id": "aWQ6MzA=",
"firstName": "John",
"lastName": "Smith",
"companyName": "Acme Inc.",
"streetAddress1": "123 Maple Street",
"streetAddress2": "Suite 101",
"city": "Toronto",
"cityArea": "Downtown",
"postalCode": "M5H 2N2",
"countryArea": "ON",
"phone": "+1-555-123-4567",
"isDefaultShippingAddress": true,
"isDefaultBillingAddress": true
}
}
}
3