Skip to main content
POST
/
api
/
v1
/
gift_cards
/
{gift_card_id}
/
disable.json
Disable Gift Card
curl --request POST \
  --url https://api.launchmystore.io/api/v1/gift_cards/{gift_card_id}/disable.json \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "gc_abc123",
    "status": "disabled",
    "disabled_at": "2024-01-25T10:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

gift_card_id
string
required
The gift card ID

Response

{
  "success": true,
  "data": {
    "id": "gc_abc123",
    "status": "disabled",
    "disabled_at": "2024-01-25T10:00:00Z"
  }
}