Tender
No description
type Tender {
tenderId: String!
orderId: Int
ownerId: Int
type: OrderType!
siteId: Int @deprecated
channelId: Int
shopId: Int!
createdAt: DateTime!
createdBy: Int
lastModifiedAt: DateTime!
lastModifiedBy: Int
userId: Int @deprecated
contactId: Int
customerId: Int
companyId: Int
invoiceUserId: Int
status: String!
firstName: String
middleName: String
lastName: String
email: String!
debtorId: String
invoiceAddress: TenderAddress
deliveryAddress: TenderAddress
itemCount: Int
items: [TenderMainItem!]
bonusItems: [TenderMainItem!]
paymentData: TenderPayment
postageData: TenderPostage
total: TenderTotal
taxLevels: [TenderTaxLevel!]
carriers: [TenderCarrier!]
payMethods: [TenderPaymethod!]
source: String
valuePoints: Int
incentivesApplied: Boolean
creditPoints: Int
actionCode: String
reference: String
remarks: String
language: String
currency: String
currencyRatio: Float
externalId: String
extra3: String
extra4: String
isEditable: Boolean
validUntil: DateTime
user: IBaseUser @deprecated
contact: Contact
customer: Customer
company: Company
}
Fields
Tender.tenderId
● String!
non-null scalar
The tender's primary identifier
Tender.orderId
● Int
scalar
Tender's associated order ID
Tender.ownerId
● Int
scalar
Tender's associated owner ID
Tender.type
● OrderType!
non-null enum
Order type
Tender.siteId
● Int
deprecated scalar
DEPRECATEDDeprecated in favor of channelId
The site id the tender/order is created from
Tender.channelId
● Int
scalar
The channel id the tender/order is created from
Tender.shopId
● Int!
non-null scalar
The shop the tender/order belongs to
Tender.createdAt
● DateTime!
non-null scalar
The date this tender/order has been created
Tender.createdBy
● Int
scalar
User which created the tender.
Tender.lastModifiedAt
● DateTime!
non-null scalar
The date this tender/order has been last modified
Tender.lastModifiedBy
● Int
scalar
User which last updated the tender.
Tender.userId
● Int
deprecated scalar
DEPRECATEDThis field will be removed in a future release, use contact+companyId or customerId instead
Tender.contactId
● Int
scalar
ContactId for this tender. Goes in combination with companyId
Tender.customerId
● Int
scalar
CustomerId for this tender.
Tender.companyId
● Int
scalar
CompanyId the contact belongs to. Goes in combination with contactId
Tender.invoiceUserId
● Int
scalar
The invoice userId for this tender
Tender.status
● String!
non-null scalar
Tender/order status
Tender.firstName
● String
scalar
User's first name
Tender.middleName
● String
scalar
User's middle name
Tender.lastName
● String
scalar
User's last name
Tender.email
● String!
non-null scalar
User's email
Tender.debtorId
● String
scalar
Invoice company debtor ID
Tender.invoiceAddress
● TenderAddress
object
The address the invoice for the order should be sent to
Tender.deliveryAddress
● TenderAddress
object
The address the order should be shipped to
Tender.itemCount
● Int
scalar
Tender/order main item count
Tender.items
● [TenderMainItem!]
list object
The tender/order items
Tender.bonusItems
● [TenderMainItem!]
list object
The tender/order bonusItems
Tender.paymentData
● TenderPayment
object
Payment data for this tender/order
Tender.postageData
● TenderPostage
object
Postage data for this tender/order
Tender.total
● TenderTotal
object
Tender total
Tender.taxLevels
● [TenderTaxLevel!]
list object
Amount of tax that applies to this tender/order per tax code
Tender.carriers
● [TenderCarrier!]
list object
List of selectable carriers
Tender.payMethods
● [TenderPaymethod!]
list object
List of selectable payment methods for this tender, including non allowed for the applied user
Tender.source
● String
scalar
Tender/order origin
Tender.valuePoints
● Int
scalar
Total amount of valuePoints that apply to this tender/order
Tender.incentivesApplied
● Boolean
scalar
Indicates whether incentives are already applied
Tender.creditPoints
● Int
scalar
Tender/order accumulated credit points
Tender.actionCode
● String
scalar
Action code that is applied to this tender. Is only filled if a valid action code was applied during checkout
Tender.reference
● String
scalar
User's reference for this tender
Tender.remarks
● String
scalar
User's remarks for this tender
Tender.language
● String
scalar
The language for this tender
Tender.currency
● String
scalar
The currency for this tender
Tender.currencyRatio
● Float
scalar
The currency ratio for this tender
Tender.externalId
● String
scalar
The order's ID in an external system
Tender.extra3
● String
scalar
Additional information field that can be stored with a tender/order
Tender.extra4
● String
scalar
Additional information field that can be stored with a tender/order
Tender.isEditable
● Boolean
scalar
Indicates whether tender can be edited
Tender.validUntil
● DateTime
scalar
Valid until date (Display Only!)
Tender.user
● IBaseUser
deprecated interface
DEPRECATEDDeprecated in favor of
contact
orcustomer
Tender User
Tender.contact
● Contact
object
Tender Contact
Tender.customer
● Customer
object
Tender Customer
Tender.company
● Company
object
Tender Company
Returned By
tender
query ● tenderApplyIncentives
mutation ● tenderDeleteItem
mutation ● tenderStart
mutation ● tenderUpdate
mutation ● tenderUpdateAddress
mutation ● tenderUpdateDiscount
mutation ● tenderUpdateInvoiceUser
mutation ● tenderUpdateItem
mutation ● tenderUpdatePayment
mutation ● tenderUpdatePostage
mutation
Member Of
TenderResponse
object