GET api/v1/settlement/refunds/automatic/{clubId}?take={take}&skip={skip}
Get automatic refunds for specific organizer.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clubId |
The organizer id |
integer |
Required |
take | integer |
Default value is 0 |
|
skip | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
List of automatic refunds
ServerResponseOfListOfRefundedOrderName | Description | Type | Additional information |
---|---|---|---|
HttpStatus | integer |
None. |
|
Message | string |
None. |
|
Data | Collection of RefundedOrder |
None. |
|
Next | string |
None. |
|
Previous | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "HttpStatus": 1, "Message": "sample string 2", "Data": [ { "OrderId": 1, "OrderDetailId": 2, "PayerFullName": "sample string 3", "ParticipantFullName": "sample string 4", "Email": "sample string 5", "Amount": 6.0, "RefundedAmount": 7.0, "EventName": "sample string 8", "OrderedDate": "2024-11-21T10:32:25.9829455+01:00", "RefundedDate": "2024-11-21T10:32:25.9829455+01:00", "RefundReference": "sample string 11" }, { "OrderId": 1, "OrderDetailId": 2, "PayerFullName": "sample string 3", "ParticipantFullName": "sample string 4", "Email": "sample string 5", "Amount": 6.0, "RefundedAmount": 7.0, "EventName": "sample string 8", "OrderedDate": "2024-11-21T10:32:25.9829455+01:00", "RefundedDate": "2024-11-21T10:32:25.9829455+01:00", "RefundReference": "sample string 11" } ], "Next": "sample string 3", "Previous": "sample string 4" }