OBJECT

PaymentHistoryEntry

link GraphQL Schema definition

1type PaymentHistoryEntry {
2id: Int!
3
4# Arguments
5# format: ISO-8601
6createdAt(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
7
8status: PaymentHistoryEntryStatus!
9
10entryType: PaymentHistoryEntryType!
11
12externalReference: String
13
14paramsJSON: String
15
16value: MonetaryValue!
17
18paymentMethod: String
19
20# It contains an API or system name this entry came from.
21# For example, "Integration API" (for all entries created here) or "Centra form" (from AMS)
22source: String
23
24currencyBaseRate: Float!
25
26# Required permission: none
27#
28# Store restrictions apply.
29order: Order!
30
31# This relation is only populated for a refund transaction, and points to a return, which triggered it.
32#
33# Required permission: Return:read
34#
35# Store restrictions apply.
36return: Return
37
38# Required permission: AdminUser:read
39adminUser: AdminUser
40
41# Required permission: StorePlugin:read
42#
43# Store restrictions apply.
44storePlugin: StorePlugin
45
46externalId: String
47
48}