Corebanq Public Docs
Profile

Description

Overview

The Profile API provides functionality for managing user profiles and profile trays, including:

  • Profile information retrieval
  • Profile tray management
  • Status tracking
  • Route management

Endpoints

Get Profile Tray

GET /v1/profile/tray

Retrieve the profile tray information for the authenticated user.

Success Response (200):

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Personal Profile",
  "type": "individual",
  "status": "active",
  "route": "/app/profile/personal"
}

Error Codes

CodeDescription
profile.invalid_file_typeInvalid file type for profile document
profile.not_foundProfile not found
profile.unauthorizedInsufficient permissions

Response Status Codes

StatusDescription
200Success - Request completed successfully
400Bad Request - Invalid input data
401Unauthorized - Missing or invalid authentication
403Forbidden - Insufficient permissions
404Not Found - Profile not found
500Internal Server Error - Server error

On this page