Generate OI (Other Interest) Extract
This section outlines the detailed process of scheduling a job to generate a OI (Other Interest) Extract using the Phoenix API.
1. Creating the Request
Create a new request in Postman as follows:
- Ensure you have a valid access token retrieved via the authentication process.
- Change the
HTTP verb
from GET to POST - Click on the Authorization tab and set the access token as the
Bearer Token
that was retrieved previously - Specify the URL to the
/extracts/hmrc/oi
API endpoint. For example https://fslpresales.fslcgix-uat.co.uk/FSLPresalesPhoenixApi/extracts/hmrc/oi

- Navigate to the 'Body' tab, selecting 'raw' as the input type. Then choose 'JSON' from the dropdown on the right hand side. Here the following text is required before making the API call
{
"companyId": "string", //Validated against companies which exist in the database
"taxYearEnd": "YYYY-04-05", //Must align with the UK tax year end, which occurs on the 5th April each year
"isReadable": true //Set to true for a readable extract, false for an unreadable extract
}
Request Body
By default, the isReadable parameter is set to
false
. This means all transactions will be marked as reported, and an extract in the required HMRC submission format will be generated.Once this process is complete, a single file will be created and no further extracts can be generated for this reporting period.
To generate extracts for review purposes, set the isReadable parameter to
true
❗Reported transactions can only be unflagged through CGiX front-end using the Scheduler, as this action is not supported by any API endpoints
2. Sending the Request
Click the Send button to send the prepared request.
3. The Response Body
Request Status | Description |
---|---|
Accepted | The request has succeeded |
Bad Request | Indication that there is a client-side error in how the request was formed. |
Unauthorized | Indicates a lack of valid authentication |
Not Found | The requested resource was not found on the server |
Response Format
This JSON response is returned when an extract generation request is successfully scheduled.
{
"correlationGuid": "1f783e3f-e2b8-40d0-a0f7-c0b3b1830fc9",
"requestRoute": "/extracts/hmrc/oi",
"requestStatus": "Accepted",
"requestStatusDateTime": "2025-03-20T07:41:28.1347242+00:00",
"requestStatusCheckRoute": "/notifications/1f783e3f-e2b8-40d0-a0f7-c0b3b1830fc9",
"entityGuid": null,
"entityCallbackRouteUri": null,
"externalCorrelationId": null,
"externalOperationId": null
}
- correlationGuid: Unique identifier for the scheduled job. Use this to check the status of the request later.
- requestRoute: The API route where the extract request was initiated.
- requestStatus: Current status of the request (e.g., Accepted, Processing, Completed).
- requestStatusDateTime: Timestamp indicating when the request status was last updated.
- requestStatusCheckRoute: API route to query the current status of the request.
To check the request status and access the generated extract, follow the steps outlined in the Access Generated Extracts section.
Extract Expiry
By default, extracts are valid for 48 hours after generation and are automatically deleted once this period expires.
Updated 3 days ago