FulfillmentCreated
Event sent when new fulfillment is created.
Added in Saleor 3.4type FulfillmentCreated implements Event {
issuedAt: DateTime
version: String
issuingPrincipal: IssuingPrincipal
recipient: App
fulfillment: Fulfillment
order: Order
notifyCustomer: Boolean!
}
Fields
FulfillmentCreated.issuedAt
● DateTime
scalar miscellaneous
Time of the event.
FulfillmentCreated.version
● String
scalar miscellaneous
Saleor version that triggered the event.
FulfillmentCreated.issuingPrincipal
● IssuingPrincipal
union miscellaneous
The user or application that triggered the event.
FulfillmentCreated.recipient
● App
object apps
The application receiving the webhook.
FulfillmentCreated.fulfillment
● Fulfillment
object orders
The fulfillment the event relates to.
FulfillmentCreated.order
● Order
object orders
The order the fulfillment belongs to.
FulfillmentCreated.notifyCustomer
● Boolean!
non-null scalar miscellaneous
If true, the app should send a notification to the customer.
Added in Saleor 3.16