ID ile Market Getir
ID'sine göre belirli bir market'i getirin.
Endpoint: GET /api/v1/integration/markets/{id}
Kimlik Doğrulama: Gerekli (Bearer token)
Gerekli Header'lar:
Authorization: Bearer <access_token>
X-Target-Server: integration
Yol Parametreleri
| Parametre | Tip | Gerekli | Açıklama |
|---|---|---|---|
id | string (UUID) | Evet | Market ID |
Yanıt
Durum: 200 OK
Market nesnesini döndürür.
{
"id": "262bed05-5a0e-4fff-8171-39fafab66b0c",
"node_id": "e40efce4-38a3-46c4-a202-e8db95d0409c",
"domain": "https://tokenizationtr.com",
"webhook": {
"host": "http://localhost:9091",
"path": "/%s/yol/bul",
"method": "GET",
"authentication": {
"type": 1,
"username": "Baba",
"password": "Aku"
},
"timeout": 30
},
"created_at": "2025-12-11T14:00:26.023564Z",
"updated_at": "2025-12-11T14:03:47.361795Z"
}
Örnek cURL İsteği
curl -X GET https://<base-url>/api/v1/integration/markets/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"