/Merchant Application Status Sync
/Merchant Application Status Sync
Request Endpoint
https://test-api.tbcbank.ge/v1/online-installments/merchant/applications/status-changes-sync
https://api.tbcbank.ge/v1/online-installments/merchant/applications/status-changes-sync
Authorization
Authorization Type | Description |
---|---|
Bearer Token | access-token should be added to Authorization header |
Request Parameters
Body Parameters
Parameter | Type | Description |
---|---|---|
merchantKey (required) | string | merchant unique identifier in online installments module |
synchronizationRequestId | string | unique identified of request |
Request Sample
curl --location --request POST 'https://test-api.tbcbank.ge/v1/online-installments/merchant/applications/status-changes-sync' \
--header 'Authorization: Bearer 9UZbzYCGmGMjWojEkOH7oEf1F1bTF' \
--header 'Content-Type: application/json' \
--data-raw '{
"merchantKey": "MerchantIntegrationTesting",
"synchronizationRequestId": "null"
}
'
Response Parameters
In case of successful synchronization, 200 OK will be returned.
Response Sample
{
"type": "https://developers.tbcbank.ge/docs/error-type-400",
"title": "Invalid SynchronizationRequestId parameter value",
"status": 400,
"detail": "Invalid SynchronizationRequestId parameter value",
"systemCode": "System code for problem is Online-Installment-Merchant-API.400.001",
"code": "001"
}
Error Response
In case of error, the standard response in problem json will be returned.
Details can be found at Error Code Description.
Updated over 2 years ago