API Reference
CatchTable 웨이팅 등록
캐치테이블 매장에 웨이팅을 등록합니다.
CatchTable 웨이팅 등록
매장 ref와 테이블 ID, 인원 수로 웨이팅을 등록하고 웨이팅 ref와 순번을 반환합니다.
엔드포인트
POST /v1/catchtable-register-waiting
Upstream
- Base URL:
https://ct-api.catchtable.co.kr - Path:
/api/v4/waiting/waitings
요청 파라미터
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
shop_ref | string | ✅ | - | - |
table_id | string | ✅ | - | - |
person | integer | ✅ | - | - |
요청 예시
{
"shop_ref": "SHOP001",
"table_id": "TABLE_2",
"person": 2
}응답 스키마
아래 스키마는 adapter의 Zod output schema에서 직접 생성됩니다.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"waiting_ref": {
"type": "string"
},
"shop_ref": {
"type": "string"
},
"waiting_order": {
"type": "number"
},
"status": {
"type": "string"
}
},
"required": [
"waiting_ref",
"shop_ref",
"status"
],
"additionalProperties": false
}응답 예시
{
"data": {
"waiting_ref": "WAIT001",
"shop_ref": "SHOP001",
"waiting_order": 3,
"status": "WAITING"
},
"pagination": null,
"meta": {
"source": "catchtable-register-waiting",
"fetchedAt": "2026-03-24T00:00:00.000Z"
}
}