POST /v1/resubmits/{batch_no}URL Parameters:
| Parameter | Type | Description |
|---|---|---|
batch_no |
string | The batch number to close. |
Headers:
| Header | Value |
|---|---|
Authorization |
Bearer <TOKEN> |
Example Request:
curl -X POST \
'https://your-api-domain/v1/resubmits' \
-H 'Authorization: Bearer <YOUR_TOKEN>'
-H 'Content-Type: application/json' \
-d '{
"batch_no" : "BATCH-2025-001"
}'
Example Success Response (200 OK):
{
"success": true,
"statusCode": 200,
"message": [
"Claims"
],
"data": [
]
}
GET /v1/resubmits/{batch_no}URL Parameters:
| Parameter | Type | Description |
|---|---|---|
batch_no |
string | The batch number to close. |
Headers:
| Header | Value |
|---|---|
Authorization |
Bearer <TOKEN> |
Example Request:
curl -X GET \
'https://your-api-domain/v1/resubmits' \
-H 'Authorization: Bearer <YOUR_TOKEN>'
-H 'Content-Type: application/json' \
-d '{
"batch_no" : "BATCH-2025-001"
}'
Example Success Response (200 OK):
{
"success": true,
"statusCode": 200,
"message": [
"Claims"
],
"data": [
]
}
POST /v1/reconciles/{batch_no}URL Parameters:
| Parameter | Type | Description |
|---|---|---|
batch_no |
string | The batch number to close. |
Headers:
| Header | Value |
|---|---|
Authorization |
Bearer <TOKEN> |
Example Request:
curl -X POST \
'https://your-api-domain/v1/reconciles' \
-H 'Authorization: Bearer <YOUR_TOKEN>'
-H 'Content-Type: application/json' \
-d '{
"batch_no" : "BATCH-2025-001"
}'
Example Success Response (200 OK):
{
"success": true,
"statusCode": 200,
"message": [
"Claims"
],
"data": [
]
}
GET /v1/reconciles/{batch_no}URL Parameters:
| Parameter | Type | Description |
|---|---|---|
batch_no |
string | The batch number to close. |
Headers:
| Header | Value |
|---|---|
Authorization |
Bearer <TOKEN> |
Example Request:
curl -X GET \
'https://your-api-domain/v1/reconciles' \
-H 'Authorization: Bearer <YOUR_TOKEN>'
-H 'Content-Type: application/json' \
-d '{
"batch_no" : "BATCH-2025-001"
}'
Example Success Response (200 OK):
{
"success": true,
"statusCode": 200,
"message": [
"Claims"
],
"data": [
]
}