> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Refunds # Type: Refund Object # Link: https://dev.wix.com/docs/api-reference/business-management/payments/refunds/refund-object.md ## Description: The refund object. A refund object is the record of an attempt to return charged funds. ## Schema: ```json Type: Refund Object | type: Refund Description: The refund object. A refund object is the record of an attempt to return charged funds. - name: id | type: string | description: Refund ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the refund is updated. Ignored when creating a refund. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#coordinated_Universal_Time_(UTC)) format. For example, "2024-01-30T13:30:00". - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the refund was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#coordinated_Universal_Time_(UTC)) format. For example, "2024-01-30T13:30:00". - name: extendedFields | type: ExtendedFields | description: Custom field data for the refund object. [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md) must be configured in the app dashboard before they can be accessed with API calls. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: chargeId | type: string | description: ID of the charge to refund. - name: currencyCode | type: string | description: Refund currency. Should be the same as the charge currency. - name: amount | type: string | description: Amount being returned to the buyer in the refund currency's main units (such as dollars or euros). For example, `"12.95"`. - name: returnedApplicationFee | type: string | description: Application fee returned to the merchant from Wix in the refund currency's main units (such as dollars or euros). For example, `"12.95"`. Only included if an application fee was returned. - name: returnedProcessingFee | type: string | description: Processing fee returned to the merchant from the payment service provider in the refund currency's main units (such as dollars or euros). For example, `"12.95"`. This field is empty when the processing fee is unknown. - name: full | type: boolean | description: Whether the refund is for the entire amount of the charge. - name: value | type: boolean | description: - name: status | type: string | description: Status of the refund. Learn more about the [refund lifecycle](https://dev.wix.com/docs/rest/business-management/payments/refunds/introduction.md#lifecycle-of-a-refund>). enum: PENDING, SUCCEEDED, FAILED, REVERSED - name: providerRefundId | type: string | description: Payment service provider's ID for the refund. - name: reason | type: string | description: Reason this refund was issued. - name: statusInfo | type: StatusInfo | description: Details about the refund status. Used to provide additional information about why a refund was given its status. - name: code | type: string | description: Reason code with detailed information about the refund status. See the full list of [reason codes](https://dev.wix.com/docs/rest/business-management/payments/service-plugins/payment-service-provider-service-plugin/reason-codes.md#refund-declined). - name: description | type: string | description: Description of the status. - name: acquirerReferenceNumber | type: string | description: Unique number assigned to a refund. This number is shared across all parties involved in processing the refund. It allows the merchant to track the refund with their bank. - name: note | type: string | description: Note providing additional information about this refund. ```