tenderUpdateAddress
Update address information for an existing tender.
Modifies billing and shipping addresses associated with the tender. Changes take effect immediately and may affect pricing calculations based on location.
Possible errors:
- TENDER_NOT_FOUND: Tender with the specified ID does not exist
- TENDER_ADDRESS_UPDATE_ERROR: Failed to update tender address
- TENDER_ORDER_ADDRESSES_NOT_FOUND: Address data not found
- FORBIDDEN: Insufficient permissions to update tenders
AUTH: Role=[order.OWNER,order.EDITOR]
tenderUpdateAddress(
id: String!
input: TenderUpdateAddressInput!
): Tender!
Arguments
tenderUpdateAddress.id
● String!
non-null scalar
Unique identifier of the tender to update.
Must be a valid string representing an existing tender in the system.
tenderUpdateAddress.input
● TenderUpdateAddressInput!
non-null input
Updated address information for the tender.
Contains billing and shipping address details to be updated on the tender.
Type
Tender
object
Comprehensive tender entity representing a potential order in the system.
Tenders are draft orders that contain all necessary information for order processing including customer details, items, pricing, addresses, payment methods, and shipping information. They can be modified, processed into orders, or deleted as needed.