Get a list with transactions to end-customer

See all your customer transactions in a single list.

The GET TransactionList endpoint, which will be available soon, will allow customers to retrieve a detailed list of all allocation transactions made to their end customers within the FincoEnergies platform. This feature will provide a comprehensive overview of your insetting credit allocations, enabling you to easily track and review each transaction. By accessing this list, you can monitor the distribution of credits across your end customers, ensuring transparency and accurate record-keeping.

Default request:

Parameters (optional):

If desired, the user can add the following parameters to the url:
  • 'Status', filtering on a specific transaction status:
    • awaitingtobefulfilled → Awaiting to be fulfilled by user or by FincoEnergies

    • allocatedunverfiied → Allocated by FincoEnergies, awaiting verification.

    • allocatedverified → Allocated and verified by FincoEnergies.

  • 'EndCustomer', filtering on a specific EndCustomer
    • EndCustomer → enter the name of the EndCustomer
Body request:
  • No input fields required.

Default response:

200: Default response

{
"Transaction": [
{
"TransactionID": "CM200001",
"Reference": "First transaction",
"EndCustomer": "Example EndCustomer 1",
"EmissionLifecycle": "WtW",
"AmountOfCredits": 0.5,
"CreationDate": "2024-06-25T08:01:51.652Z",
"TransactionStatus": "Allocated (Verified)",
"Product": "Ocean Insetting"
},
{
"TransactionID": "CM200002",
"Reference": "Second transaction",
"EndCustomer": "Example EndCustomer 2",
"EmissionLifecycle": "WtW",
"AmountOfCredits": 0.012,
"CreationDate": "2024-09-09T11:47:23.234Z",
"TransactionStatus": "Awaiting to be fulfilled",
"Product": "Ocean Insetting"
}
]
}

404: Not found error response

{
"Message": "No Transaction found"
}

422: Validation error response

{
"error": "Description of validation error."
}

500: Default error response

{
"error": "Description of the error(s) that occurred."
}

504: Timeout error response

{
"error": "Timeout waiting for response"
}