Home
Home
  1. 📡 Endpoints
  • 🚀 Getting Started
  • 🔎 Screening API
    • Overview
    • Blacklist Matching Logic
    • Blockchain Analysis
      POST
    • Individuals Analysis
      POST
    • Organizations Analysis
      POST
    • Screening Entities Summary Analysis
      POST
    • Create BlackList
      POST
    • Get All BlackList Records
      GET
    • Get Blacklist Record by ID
      GET
    • Delete Blacklist Record by ID
      DELETE
    • Update Blacklist Record by ID
      PATCH
    • Update Blacklist Settings Account
      PATCH
  • 🌊 Flow API
    • Overview
    • Flow Step: Identity Verification
    • Flow Step: Onboarding Individual
    • Flow Step: Onboarding Organization
    • 📡 Endpoints
      • Authentication token
        POST
      • Get Flow Instance
        GET
      • Get File from Flow Instance
        GET
      • Identity: Get Details
        GET
      • Identity: Get Files
        GET
      • Identity: Update Status
        PUT
      • Onboarding: Get Details
        GET
      • Onboarding: Get File
        GET
      • Onboarding: Get Multiple Files
        GET
      • Onboarding: Update Status
        PUT
    • 📤 Webhooks
      • Webhooks Overview
      • Flow
      • Identity Verification
      • Onboarding Individual
      • Onboarding Organizations
      • Identity Verification by Onboarding
  • 💸 Transaction API
    • 🔑 Authentication
    • Overview
    • Transaction Analysis
    • Transaction Status
    • Document Types
    • Cryptocurrencies
    • Diagram
    • 📤 Webhooks
  • 📡 Endpoints
    • Create operation
    • Get operation
    • Get valid document types
    • Get valid coins
  • 📂 Resources
    • Concept Details
    • Enum Validation
Home
Home
  1. 📡 Endpoints

Onboarding: Update Status

PUT
https://aws-verification-id-dev.rillis.io/api/v1/client-api/onboardings/change-status/{id}
To manually update the status of the onboarding step.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://aws-verification-id-dev.rillis.io/api/v1/client-api/onboardings/change-status/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "status": "REJECTED",
  "reason": "Rejected by user"
}'
Response Response Example
200 - Success
{
  "_id": "67ead05f66d86f9778eaa150",
  "flow": "67cf079a0ebe7c5442de4a23",
  "user": "64204dd759290a9403fef44e",
  "flow_instance": "67eab94e66d86f9778eaa0d7",
  "flow_event": "67ead05f66d86f9778eaa14e",
  "identities": [],
  "data": {
    "data_individual": {
      "address_1": "AV 5 Calle x 2",
      "address_2": "AV 8 Calle 33 2",
      "city": "Colorado",
      "country_of_residence": "USA",
      "name": "name person 2",
      "province": "El caio 2",
      "business_information": {
        "estimated_monthly_transaction_usd": 70000.3,
        "fund_origin": "SALARY",
        "funding_source_type": "INHERITANCE",
        "income_brief_description": "description individual income",
        "legal_relationship_purpose": "COMMERCIAL_OPERATIONS",
        "monthly_income_usd": 7000000,
        "total_assets": 8888888,
        "source_of_income": "SALARY_OR_WAGE"
      },
      "email": "fff@gmail.com",
      "is_pep": true
    },
    "type": "INDIVIDUAL"
  },
  "status": "PENDING_REVIEW",
  "file_references_data": [],
  "completed_at": "2025-03-31T17:26:56.869Z",
  "reason": null,
  "createdAt": "2025-03-31T17:26:55.374Z",
  "updatedAt": "2025-03-31T17:26:56.877Z"
}
Modified at 2025-05-29 16:38:24
Previous
Onboarding: Get Multiple Files
Next
Webhooks Overview
Built with