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# Required permission: AdminUser:read
32adminUser: AdminUser
33
34# Required permission: StorePlugin:read
35#
36# Store restrictions apply.
37storePlugin: StorePlugin
38
39externalId: String
40
41}