# Fetch Enriched data

Upon finishing the statement upload or completing the BankConnect journey, please activate the processing of the uploaded statements by triggering the designated processing API.

Please note that once processing is underway, additional statements cannot be uploaded as the session will have concluded and expired.

# Initiate Processing API

Endpoint

POST https://apis.bankconnect.finbox.in/bank-connect/v1/session_data/<session_id>/initiate_processing/

Authentication

Request headers x-api-key with API Key as value and server-hash with Server Hash as value must be present in request.

Success Response:

HTTP Status code: 202 Accepted

{
  "session_id": "uuid_for_session_id",                             
  "message": "success"   
}

Error Response:

{
  "error": {
    "code": "SESSION_NOT_FOUND",
    "message": "The provided session ID is invalid"
  }
}

# List of API Error Codes

The following table lists API error codes applicable to this API.

Code Message HTTP status code
SESSION_NOT_FOUND The provided session ID is invalid 404
DUPLICATE_PROCESSING_REQUEST Request for processing have already been initiated 409
SESSION_DELETED The provided session ID has been deleted 410
ACCESS_DENIED Authentication credentials were not provided 403
Last Updated: 11/30/2024, 12:55:57 PM