PUBLIC SERVICES [PROD]
  1. External System Integration
PUBLIC SERVICES [PROD]
  • Introduction
  • Document Management
  • External Integration
  • Authentication
    • Generate a token to access ROIT APIs
      POST
  • Invoice-to-Pay
    • Documents Manager
      • Create document export request
      • Get export request by id
      • Delete export request by id
      • Generate signed URLs for export files by id
    • External System Integration
      • Register delivery integration
        POST
      • Get pending entities to be integrated
        POST
      • Update integration status
        POST
      • Get all documents attached to a request
        POST
      • Reprocess a specific request
        POST
    • Upload Document
      • Upload document as base64
  • Tax Reform
    • Data Integration
      • Create a new request
      • Update request status
      • List requests
      • Get request by ID
      • List Requests
      • Update request by ID
      • Delete request by ID
      • Generate signed URL
      • Process callback
  1. External System Integration

Reprocess a specific request

HOM
https://hom.roit.ai
HOM
https://hom.roit.ai
POST
/ibs-core-entrypoint/api/v1/entrypoint/requests/reprocess

Request

Header Params
Authorization
string 
required
token generated
Body Params application/json
requestId
string 
required
ID of the request
Example:
1234a5b6-cd78-9012-3456-789e012345fg
integrationId
string 
required
ID of the integration registered at ROIT ADMIN
Example:
9876c5d4-ba32-1098-7654-321f98765432
Example
{
    "requestId": "1234a5b6-cd78-9012-3456-789e012345fg",
    "integrationId": "9876c5d4-ba32-1098-7654-321f98765432"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://hom.roit.ai/ibs-core-entrypoint/api/v1/entrypoint/requests/reprocess' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "requestId": "1234a5b6-cd78-9012-3456-789e012345fg",
    "integrationId": "9876c5d4-ba32-1098-7654-321f98765432"
}'

Responses

🟢200OK
application/json
Body
timestamp
number 
optional
status
string 
optional
message
string 
optional
data
object (EntityStatusModel) 
optional
id
string 
optional
entity
enum<string> 
required
Allowed values:
DOCUMENTACCOUNTS_PAYABLEPURCHASE_ORDERERP_PARAMSSUPPLIERGENERICTAX_VALIDATIONDOCUMENT_REVERSESERVICE_ENTRY_SHEET
masterId
string 
required
requestId
string 
required
reference
string 
required
integrationId
string 
required
type
string 
required
status
enum<string> 
required
Allowed values:
PROCESSINGRECEIVEDPENDINGERRORDONEWARNING
isPriority
boolean 
optional
Default:
false
retryAfter
number 
required
message
string 
optional
metadata
object 
optional
entryReference
number 
optional
entryDate
string 
optional
systemInfo
object 
optional
Default:
{}
Example
{
    "timestamp": 0,
    "status": "string",
    "message": "string",
    "data": {
        "id": "string",
        "entity": "DOCUMENT",
        "masterId": "string",
        "requestId": "string",
        "reference": "string",
        "integrationId": "string",
        "type": "string",
        "status": "PROCESSING",
        "isPriority": false,
        "retryAfter": 0,
        "message": "string",
        "metadata": {},
        "entryReference": 0,
        "entryDate": "string",
        "systemInfo": {}
    }
}
Modified at 2025-07-15 12:08:29
Previous
Get all documents attached to a request
Next
Upload document as base64
Built with