# Retrieve platform fee refund(s) This is used to fetch a platform fee refunds by their platformFeeId Endpoint: GET /platform-fees/{platformFeeId}/refunds Version: 1.1.0 Security: secretApiKeyAuth ## Path parameters: - `platformFeeId` (string, required) PlatformFee to retrieve refunds for Example: "pf_01FCTS1XMKH9FF43CAFA4CXT3P" ## Response 200 fields (application/json): - `items` (array) - `items.id` (string) The unique identifier for the platform fee refund Example: "fr_01FM9XMMV1MYDG6NGMHPDE065N_01FM9XNFXDYXAT0BJN5BBN794B" - `items.platformFeeId` (string) The unique platformFeeId that this refund relates to Example: "pf_01FM9XMMV1MYDG6NGMHPDE065N" - `items.amount` (integer) The amount of the platform fee refund in minor digits Example: 5 - `items.currency` (string) The ISO currency code Example: "GBP" - `items.reason` (string) The reason for the platform fee refund Example: "Requested by the customer" - `items.status` (string) Enum: "Pending", "Failed", "Succeeded" - `items.createdTimestamp` (integer) The epoch timestamp (seconds) when the platform fee refund was created Example: 1470989538 - `items.lastUpdatedTimestamp` (integer) The epoch timestamp (seconds) when the platform fee refund was last updated Example: 1470989538 ## Response 500 fields (application/json): - `requestId` (string) Example: "b83f2653-06d7-44a9-a548-5825e8186004" - `code` (string) Example: "400" - `errors` (array) - `errors.message` (string) Example: "Required property 'amount' not found in JSON"