Good Leap · Arazzo Workflow

Originate and track a GoodLeap loan

Version 1.0.0

Authenticate, submit a loan application, then track its status and next actions.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyFintechFinancingLendingSolarHome ImprovementSustainabilityPoint of SaleLoansPaymentsArazzoWorkflows

Provider

good-leap

Workflows

originateAndTrackLoan
Partner authenticates, submits a loan application, and tracks it to a decision.
4 steps inputs: applicant, organizationId outputs: loanId, status
1
authenticate
generateJwtToken
2
submitLoan
submitLoanApplication
3
checkStatus
loanStatus
4
nextActions
nextAvailableLoanActions

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Originate and track a GoodLeap loan
  version: 1.0.0
  summary: Authenticate, submit a loan application, then track its status and next actions.
sourceDescriptions:
- name: goodleap
  url: ../openapi/good-leap-developer-api-openapi.yml
  type: openapi
workflows:
- workflowId: originateAndTrackLoan
  summary: Partner authenticates, submits a loan application, and tracks it to a decision.
  inputs:
    type: object
    properties:
      organizationId:
        type: string
      applicant:
        type: object
  steps:
  - stepId: authenticate
    operationId: generateJwtToken
    requestBody:
      contentType: application/json
      payload:
        organizationId: $inputs.organizationId
    outputs:
      token: $response.body#/token
  - stepId: submitLoan
    operationId: submitLoanApplication
    requestBody:
      contentType: application/json
      payload:
        applicant: $inputs.applicant
    outputs:
      loanId: $response.body#/id
  - stepId: checkStatus
    operationId: loanStatus
    parameters:
    - name: id
      in: path
      value: $steps.submitLoan.outputs.loanId
    outputs:
      status: $response.body#/status
  - stepId: nextActions
    operationId: nextAvailableLoanActions
    parameters:
    - name: id
      in: path
      value: $steps.submitLoan.outputs.loanId
  outputs:
    loanId: $steps.submitLoan.outputs.loanId
    status: $steps.checkStatus.outputs.status