> ## Documentation Index
> Fetch the complete documentation index at: https://knowledge.bitbybit.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Reward Option

> Delete reward option and corresponding Shopify price rule.



## OpenAPI

````yaml DELETE /bitlogin/api/open/v1/loyalty/reward-options/{id}
openapi: 3.1.0
info:
  title: bitLogin Loyalty API
  description: >-
    Loyalty configuration endpoints for bitLogin (integration toggle, point
    conversion, and reward options).
  version: 1.0.0
servers:
  - url: https://api.bitbybit.studio
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /bitlogin/api/open/v1/loyalty/reward-options/{id}:
    delete:
      tags:
        - Loyalty - bitLogin
      summary: Delete reward option
      description: Delete reward option and corresponding Shopify price rule.
      operationId: deleteRewardOption
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: No content
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageError'
components:
  schemas:
    MessageError:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      description: API key for authentication. Create one in Settings > Developer.
      name: x-api-key
      in: header
      type: apiKey

````