Skip to main content

Pricesheet

Price sheet entity for managing product pricing and availability.

Represents pricing information and product catalogs that are accessible to specific companies, contacts, and customers. Used for personalized pricing, product visibility, and commercial relationship management.

type Pricesheet {
id: String!
createdAt: DateTime!
lastModifiedAt: DateTime!
code: String!
names: [LocalizedString!]
descriptions: [LocalizedString!]
priority: Int!
readonly: Boolean!
usergroups: [String!]!
contacts: [Contact!]! @deprecated
contactsPaginated(
input: PricesheetContactsSearchInput
): ContactsResponse!
customers: [Customer!]! @deprecated
customersPaginated(
input: PricesheetCustomersSearchInput
): CustomersResponse!
companies: [Company!]! @deprecated
companiesPaginated(
input: PricesheetCompaniesSearchInput
): CompaniesResponse!
}

Fields

Pricesheet.id ● String! non-null scalar

Primary identifier

Pricesheet.createdAt ● DateTime! non-null scalar

Creation date

Pricesheet.lastModifiedAt ● DateTime! non-null scalar

Last modified date

Pricesheet.code ● String! non-null scalar

Pricesheet code

Pricesheet.names ● [LocalizedString!] list object

Pricesheet name

Pricesheet.descriptions ● [LocalizedString!] list object

Pricesheet description

Pricesheet.priority ● Int! non-null scalar

Pricesheet priority

Pricesheet.readonly ● Boolean! non-null scalar

Readonly

Pricesheet.usergroups ● [String!]! non-null scalar

Pricesheet.contacts ● [Contact!]! deprecated non-null object

DEPRECATED

Use contactsPaginated.

Use contactsPaginated.

Pricesheet.contactsPaginated ● ContactsResponse! non-null object

Pricesheet.contactsPaginated.input ● PricesheetContactsSearchInput input

Pricesheet.customers ● [Customer!]! deprecated non-null object

DEPRECATED

Use customersPaginated.

Use customersPaginated.

Pricesheet.customersPaginated ● CustomersResponse! non-null object

Pricesheet.customersPaginated.input ● PricesheetCustomersSearchInput input

Pricesheet.companies ● [Company!]! deprecated non-null object

DEPRECATED

Use companiesPaginated.

Use companiesPaginated.

Pricesheet.companiesPaginated ● CompaniesResponse! non-null object

Pricesheet.companiesPaginated.input ● PricesheetCompaniesSearchInput input

Returned By

pricesheet query ● pricesheetAssign mutation ● pricesheetCreate mutation ● pricesheetUnassign mutation ● pricesheetUpdate mutation

Member Of

Company object ● Contact object ● Customer object ● Discount object ● PricesheetResponse object