# Retrieve a platform fee by Id This is used to fetch a platform fee by its platformFeeId Endpoint: GET /platform-fees/{platformFeeId} Version: 1.1.0 Security: secretApiKeyAuth ## Path parameters: - `platformFeeId` (string, required) PlatformFee to retrieve Example: "pf_01FCTS1XMKH9FF43CAFA4CXT3P" ## Response 200 fields (application/json): - `id` (string) The unique identifier for the platform fee Example: "pf_01FCTS1XMKH9FF43CAFA4CXT3P" - `paymentSessionId` (string) The unique payment session that this platform fee relates to Example: "ps_01JJPPAZTNN38EMDJ72FASHE7R" - `amount` (integer) The amount of the fee you collected on top of a payment for a linked account Example: 40 - `paymentAmount` (integer) The amount of the associated payment Example: 450 - `currency` (string) The ISO currency code Example: "GBP" - `fromAccountId` (string) The account that you collected the fee from Example: "ac_b83f2653-06d7-44a9-a548-5825e8186004" - `createdTimestamp` (integer) The epoch timestamp (seconds) when the payment was created Example: 1470989538 - `processingFee` (integer) This field is now deprecated. Please use the /balance-transactions endpoint to see the fees paid on these transactions. The processing fee that is taken from the original payment. This amount is then deducted from the amount you collect as your fee from the transaction. Example: 7 - `netAmount` (integer) This field is now deprecated. Please use the /balance-transactions endpoint to see the net amount for these transactions. The net amount you take once fees have been deducted. Example: 33 ## Response 404 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" ## 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"