Skip to main content

Tender

Tender entity representing a procurement request or quotation.

Tenders are formal requests for quotations or proposals from suppliers. They can be associated with users, contacts, customers, and companies to manage the procurement process and track relationships.

type Tender {
orderId: Int
revisions(
input: OrderRevisionByOrderSearchInput
): OrderRevisionResponse!
tenderId: String!
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
public: Boolean!
revisionNumber: Int!
publicVersionNumber: Int
invalid: Boolean!
invalidationReason: String
createdByAdminUserId: Int
createdByContactId: Int
createdByCustomerId: Int
createdFromRevisionNumber: Int
user: IBaseUser @deprecated
contact: Contact
customer: Customer
company: Company
}

Fields

Tender.orderId ● Int scalar

Tender's associated order ID

Tender.revisions ● OrderRevisionResponse! non-null object

Tender.revisions.input ● OrderRevisionByOrderSearchInput input

Tender.tenderId ● String! non-null scalar

The tender's primary identifier

Tender.ownerId ● Int scalar

Tender's associated owner ID

Tender.type ● OrderType! non-null enum

Order type

Tender.siteId ● Int deprecated scalar

DEPRECATED

Deprecated 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

DEPRECATED

This 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.public ● Boolean! non-null scalar

Indicates whether order is public

Tender.revisionNumber ● Int! non-null scalar

Order revision number

Tender.publicVersionNumber ● Int scalar

Order public version number

Tender.invalid ● Boolean! non-null scalar

Indicates whether order is invalid

Tender.invalidationReason ● String scalar

Order invalidation reason

Tender.createdByAdminUserId ● Int scalar

Order created by admin user id

Tender.createdByContactId ● Int scalar

Order created by contact id

Tender.createdByCustomerId ● Int scalar

Order created by customer id

Tender.createdFromRevisionNumber ● Int scalar

The revision this was created from

Tender.user ● IBaseUser deprecated interface

DEPRECATED

Deprecated in favor of specific contact or customer fields for better type safety

User associated with this tender.

Returns the user, contact, or customer responsible for or related to this tender. Provides unified access to user information regardless of user type.

Tender.contact ● Contact object

Contact person associated with this tender.

Returns the specific contact who is responsible for or involved in this tender process. Used for direct communication and relationship management.

Tender.customer ● Customer object

Customer associated with this tender.

Returns the customer who initiated or is the subject of this tender. Used for customer relationship management and tender tracking.

Tender.company ● Company object

Company associated with this tender.

Returns the company involved in this tender process. Used for organizational context and access control within the tender management system.

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