Chapter 6

Claim Reconciliation

RESUBMIT CLAIMS

  • Endpoint: POST /v1/resubmits/{batch_no}
  • Description: Resubmits claims for a particular batch number for review.

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 RESUBMITTED BATCH INVOICE CLAIMS

  • Endpoint: GET /v1/resubmits/{batch_no}
  • Description: Get resubmited claims for a particular batch number for review.

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": [

    ]
  }

RECONCILE BATCH INVOICE

  • Endpoint: POST /v1/reconciles/{batch_no}
  • Description: Complete reconciliation for a particular batch number in review.

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 BATCH INVOICE RECONCILLIATION

  • Endpoint: GET /v1/reconciles/{batch_no}
  • Description: Get Completed reconciliation for a particular batch number in review.

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": [

    ]
  }