> ## Documentation Index
> Fetch the complete documentation index at: https://www.marqeta.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Reward Conversions Management

> Use the `/credit/rewards/conversions` endpoint to manage the reward conversion rates for reward redemptions.

export const EndpointCard = ({method = "API", title, children, href, arrow = true}) => {
  const METHOD_STYLES = {
    GET: {
      bg: "mint-bg-green-400/20 dark:mint-bg-green-400/20",
      text: "mint-text-green-700 dark:mint-text-green-400",
      border: "mint-border-green-300 dark:mint-border-green-700"
    },
    POST: {
      bg: "mint-bg-blue-400/20 dark:mint-bg-blue-400/20",
      text: "mint-text-blue-700 dark:mint-text-blue-400"
    },
    PUT: {
      bg: "mint-bg-yellow-400/20 dark:mint-bg-yellow-400/20",
      text: "mint-text-yellow-700 dark:mint-text-yellow-400"
    },
    PATCH: {
      bg: "mint-bg-orange-400/20 dark:mint-bg-orange-400/20",
      text: "mint-text-orange-700 dark:mint-text-orange-400"
    },
    DELETE: {
      bg: "mint-bg-red-400/20 dark:mint-bg-red-400/20",
      text: "mint-text-red-700 dark:mint-text-red-400"
    },
    API: {
      bg: "mint-bg-black",
      text: "mint-text-white"
    }
  };
  const MethodBadge = ({method}) => {
    const style = METHOD_STYLES[method?.toUpperCase()] ?? METHOD_STYLES.GET;
    return <span className={`
          method-pill rounded-lg font-semibold px-1.5 py-0.5 text-xs leading-5 ${style.bg} ${style.text}`}>
        {method?.toUpperCase()}
      </span>;
  };
  const content = <div className="group flex items-center gap-4 border border-gray-200 dark:border-gray-700 rounded-xl p-5 hover:border-gray-400 dark:hover:border-gray-500 hover:shadow-md transition-all cursor-pointer">
      {}
      <div className="shrink-0">
        <MethodBadge method={method} />
      </div>
      {}
      <div className="flex-1 min-w-0">
        <p className="font-semibold text-gray-900 dark:text-white text-sm leading-snug">{title}</p>
        {children && <p className="mt-1 text-sm text-gray-500 dark:text-gray-400 line-clamp-2">{children}</p>}
      </div>
    </div>;
  if (!href) return content;
  return <a href={href} className="block no-underline border-b-0 mb-2">
      {content}
    </a>;
};

<Note>
  **Note**\
  This feature is currently in beta and subject to change. To learn more about the Beta program for this feature, contact your Marqeta representative.
</Note>

Use the `/credit/rewards/conversions` endpoint to manage the reward conversion rates for reward redemptions.

Marqeta only manages rewards conversion rates for redemptions managed by the Marqeta Rewards Platform: for example, `STATEMENT_CREDIT`. The Marqeta Rewards Platform does not manage redemptions in which the rewards balance is redeemed for conversion through a third-party system. Conversions for `EXTERNAL`-type redemptions are not managed by the Marqeta Rewards Platform either.

<h2 id="retrieve_conversions">
  Retrieve conversion entries
</h2>

**Action:** `GET`\
**Endpoint:** `/credit/rewards/conversions`

Retrieve conversion entries by reward program short code.

<h3 id="_response_body">
  Response body
</h3>

| Fields                                                                   | Description                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| count<br /><br />integer<br /><br />Returned                             | Number of resources returned.<br /><br />**Allowable Values:**<br /><br />1–100                                                                                                                                                                                                                                                                                                                                                                  |
| start\_index<br /><br />integer<br /><br />Returned                      | Sort order index of the first resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                            |
| end\_index<br /><br />integer<br /><br />Returned                        | Sort order index of the last resource in the returned array.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                             |
| is\_more<br /><br />boolean<br /><br />Conditionally returned            | A value of `true` indicates that more unreturned resources exist.<br /><br />**Allowable Values:**<br /><br />`true`, `false`                                                                                                                                                                                                                                                                                                                    |
| data<br /><br />array of objects<br /><br />Returned                     | List of conversion objects.<br /><br />**Allowable Values:**<br /><br />Valid array of one or more conversion objects                                                                                                                                                                                                                                                                                                                            |
| data\[].**token**<br /><br />string<br /><br />Returned                  | Unique identifier of the conversion.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                     |
| data\[].**bundle\_token**<br /><br />string<br /><br />Returned          | Unique identifier of the bundle.<br /><br />**Allowable Values:**<br /><br />36 char max                                                                                                                                                                                                                                                                                                                                                         |
| data\[].**type**<br /><br />string<br /><br />Returned                   | Type of redemption.<br /><br />- `EXTERNAL` - You issue the redemption on your external platform; Marqeta adjusts the reward account balance on the system of record.<br />- `STATEMENT_CREDIT` - Marqeta issues the redemption as a statement credit on the associated account.<br />**NOTE**: This creates a new journal entry on the account and cannot be undone.<br /><br />**Allowable Values:**<br /><br />`EXTERNAL`, `STATEMENT_CREDIT` |
| data\[].**conversion\_rate**<br /><br />decimal<br /><br />Returned      | Rate that points are worth when converting them using the `REDEMPTION_TYPE` indicated.<br /><br />**Allowable Values:**<br /><br />0.001 min<br /><br />Format: 0.000                                                                                                                                                                                                                                                                            |
| data\[].**conversion\_increment**<br /><br />integer<br /><br />Returned | Static amount to reward if rule conditions are met.<br /><br />**Allowable Values:**<br /><br />Any integer                                                                                                                                                                                                                                                                                                                                      |
| data\[].**currency**<br /><br />string<br /><br />Conditionally returned | Type of currency used for the conversion rate. Three-digit <a href="https://www.iso.org/iso-4217-currency-codes.html" target="_blank" rel="noopener">ISO 4217 currency code</a>.<br /><br />**Allowable Values:**<br /><br />Any currency code allowed by your program                                                                                                                                                                           |
| data\[].**is\_active**<br /><br />boolean<br /><br />Returned            | A value of `true` indicates that the conversion is active.<br /><br />**Allowable Values:**<br /><br />`true`, `false`<br /><br />**Default value:**`true`                                                                                                                                                                                                                                                                                       |
| data\[].**created\_time**<br /><br />datetime<br /><br />Returned        | Date and time when the conversion entry was created on the Marqeta platform, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                                    |
| data\[].**updated\_time**<br /><br />datetime<br /><br />Returned        | Date and time when the conversion entry was last updated on the Marqeta platform, in UTC.<br /><br />**Allowable Values:**<br /><br />Format: yyyy-MM-ddThh:mm:ssZ                                                                                                                                                                                                                                                                               |

<h3 id="_sample_response_body">
  Sample response body
</h3>

```json JSON lines wrap theme={null}
{
  "count": 1,
  "start_index": 0,
  "end_index": 0,
  "data": [
    {
      "token": "8a8cfd94-978a-4b03-80e0-ed57be0c6230",
      "type": "STATEMENT_CREDIT",
      "conversion_rate": 1.3,
      "conversion_increment": 130,
      "currency": "USD",
      "is_active": true,
      "bundle_token": "f0cf97cb-76f7-47a5-83e7-188b9e741cf9",
      "created_time": "2024-01-04T20:37:11Z",
      "updated_time": "2024-01-04T20:37:11Z"
    }
  ]
}
```


## Related topics

- [Reward Rules Management](/docs/core-api/credit-reward-rules-management.md)
- [About Reward Accounts](/docs/developer-guides/about-credit-reward-accounts.md)
- [Account Rewards](/docs/core-api/credit-account-rewards.md)
- [Reward Redemptions](/docs/core-api/credit-reward-redemptions.md)
- [Credit Rewards](/docs/diva-api/credit-rewards.md)
