ApiFuseApiFuse
API Reference

CatchTable 예약 취소

캐치테이블 예약을 취소합니다.

CatchTable 예약 취소

예약 ref로 예약을 취소하고 취소 상태를 반환합니다.

엔드포인트

POST /v1/catchtable-cancel-reservation

Upstream

  • Base URL: https://ct-api.catchtable.co.kr
  • Path: [dynamic]

요청 파라미터

파라미터타입필수기본값설명
reservation_refstring--
reasonstring--

요청 예시

{
  "reservation_ref": "RES001",
  "reason": "schedule_change"
}

응답 스키마

아래 스키마는 adapter의 Zod output schema에서 직접 생성됩니다.

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "reservation_ref": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "cancelled_at": {
      "type": "string"
    }
  },
  "required": [
    "reservation_ref",
    "status"
  ],
  "additionalProperties": false
}

응답 예시

{
  "data": {
    "reservation_ref": "RES001",
    "status": "CANCELLED",
    "cancelled_at": "2026-03-25T10:00:00+09:00"
  },
  "pagination": null,
  "meta": {
    "source": "catchtable-cancel-reservation",
    "fetchedAt": "2026-03-24T00:00:00.000Z"
  }
}

On this page