Skip to content

Tasks

Read a loan’s workflow approval tasks

List loan tasks

Request

List the workflow tasks (submit / pre-approve / approve / re-submit steps) for a loan, with open/completed status. Read-only: tasks are completed automatically by the loan workflow/decision engine when the corresponding action occurs, not via a direct API write.

Security
ApiKeyAuth
Path
idstringrequired
curl -i -X GET \
  'https://api.pioneerft.com/api/public/v1/loans/{id}/tasks' \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>'

Responses

Loan tasks

Bodyapplication/json
dataArray of objects(PublicTask)
Response
{ "data": [ { "id": "string", "loanId": "string", "componentId": "string", "action": "string", "triggerAction": "string", "status": "open", "completedAt": "string" } ] }