Pave Bank
Sandbox/Simulate RFI

Create RFI Action

Perform an action (approve, reject, or close) on a Request for Information.

This endpoint is only available in our sandbox environment. It is not available in production.

Use this endpoint to perform actions on an entire RFI in sandbox mode, simulating the compliance team approving, rejecting, or closing an RFI after reviewing customer responses.

Example Request

curl --request POST \
  --url https://developer-api-staging.pavebank.dev/v1/sandbox/rfis/<RFI_ID>/action \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
    "action": "approve"
  }'
POST
/v1/sandbox/rfis/{rfiID}/action

Authorization

AuthorizationRequiredBearer <token>

Enter your token in the format: Bearer {token}

In: header

Request Body

application/jsonOptional
actionRequiredstring

The action to perform on an RFI or question

Value in: "approve" | "reject" | "close"

Path Parameters

rfiIDRequiredstring

The unique identifier of the RFI

Response Body

Success response

curl -X POST "https://developer-api-staging.pavebank.dev/v1/sandbox/rfis/string/action" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "approve"
  }'
Empty