Changes for page account

Last modified by Jenny Eklund on 2025/09/29 10:46
From version 65.1
edited by David Persson
on 2024/02/21 07:42
To version 66.1
edited by Jenny Eklund
on 2025/09/29 09:29
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -xwiki:XWiki.dap
1 +xwiki:XWiki.gsc
Content
... ... @@ -8,6 +8,8 @@
8 8  
9 9  === Changelog ===
10 10  
11 +2025-09-29
12 +Added active-complaints; possibility to get active complaints registered on an account (Estimated release 2025-10-14)
11 11  
12 12  (% id="HRoutesegments" %)
13 13  == Introduction ==
... ... @@ -106,6 +106,8 @@
106 106   "recurringPaymentConfiguration": "/ledger/account/v1/XXX/accounts/NNN/recurring-payment-configuration",
107 107   "cards": "/ledger/account/v1/XXX/accounts/123456/cards",
108 108   "transactions": "/ledger/account/v1/XXX/accounts/NNN/transactions",
111 + "reservations": "/ledger/account/v1/XXX/accounts/NNN/reservations",
112 + "activeComplaints": "/ledger/account/v1/XXX/accounts/NNN/active-complaints",
109 109   "currency": "sek",
110 110   "bills": "/ledger/account/v1/XXX/accounts/NNN/bills",
111 111   "customer": "/ledger/customers/v1/XXX/customer/123456",
... ... @@ -188,6 +188,8 @@
188 188   "recurringPaymentConfiguration": "/ledger/account/v1/XXX/accounts/NNN/recurring-payment-configuration",
189 189   "cards": "/ledger/account/v1/XXX/accounts/123456/cards",
190 190   "transactions": "/ledger/account/v1/XXX/accounts/NNN/transactions",
195 + "reservations": "/ledger/account/v1/XXX/accounts/NNN/reservations",
196 + "activeComplaints": "/ledger/account/v1/XXX/accounts/NNN/active-complaints",
191 191   "currency": "sek",
192 192   "bills": "/ledger/account/v1/XXX/accounts/NNN/bills",
193 193   "customer": "/ledger/customers/v1/XXX/customer/123456",
... ... @@ -988,6 +988,53 @@
988 988  
989 989  === ===
990 990  
997 +== Active-complaints ==
998 +
999 +
1000 +Get a list of active complaints
1001 +
1002 +==== List active complaints for an account ====
1003 +
1004 +{{code language="http" title="**Request**"}}
1005 +GET /ledger/account/v1/XXX/accounts/NNN/active-complaints HTTP/1.1
1006 +Host: -
1007 +Authorization: Bearer<Token>
1008 +Content-Type: application/json
1009 +
1010 +{{/code}}
1011 +
1012 +Example of response on successfully fetched active complaints. This resource corresponds to active complaints registered on the account at the given created date.
1013 +
1014 +{{code language="http" title="**Response**"}}
1015 +HTTP/1.1 200 OK
1016 +Content-Type: application/json
1017 +
1018 +{
1019 + "items": [
1020 + {
1021 + "created": "2025-11-06",
1022 + "type": "Fraud"
1023 + }
1024 + ],
1025 + "navigation": {
1026 + "@id": "/ledger/account/v1/xxx/accounts/nnn/active-complaints"
1027 + }
1028 +}
1029 +{{/code}}
1030 +
1031 +==== ====
1032 +
1033 +==== Active-complaints resource properties ====
1034 +
1035 +(% class="table-bordered table-striped" %)
1036 +|=(% style="width: 337px;" %)Property|=(% style="width: 205px;" %)Data type|=(% style="width: 208px;" %)Format|=(% style="width: 58px;" %)Modify (patch)|=(% style="width: 1176px;" %)Description
1037 +|(% style="width:337px" %)type|(% style="width:205px" %)string|(% style="width:208px" %) |(% style="width:58px" %) |(% style="width:1176px" %)Types: Fraud, Complaint
1038 +|(% style="width:337px" %)created|(% style="width:205px" %)date|(% style="width:208px" %) |(% style="width:58px" %) |(% style="width:1176px" %)(((
1039 +The date when the complaint was registered
1040 +)))
1041 +
1042 +==== ====
1043 +
991 991  {{display reference="developer:Main.Invoicing.ledger-api-general-docs.api-section-problems.WebHome"/}}
992 992  
993 993  === Problem types ===