Apps
Create App
Create a new app in the workspace.
POST
Creates an app and returns its credentials.Documentation Index
Fetch the complete documentation index at: https://docs.hopae.com/llms.txt
Use this file to discover all available pages before exploring further.
New to Hopae Connect? See the Authentication guide first to understand which credentials to use for which endpoints.
Request
Bearer <API_KEY> from Console > Developers > Workspace API Keys.application/jsonOptional client-generated string (max 255 chars) to safely retry without creating duplicates. Scoped per workspace. A key is valid for 24 hours. If the same key is replayed with an identical body, the original response is returned with an
Idempotency-Replayed: true header. Reusing the same key with a different body returns 409 IDEMPOTENCY_KEY_CONFLICT.Request Body
Display name for the app.
Response
Returns the created App object, including the client secret. Store it securely.The response includes a
Location header pointing at the newly-created resource (e.g., /connect/v1/apps/HqTRDIYH).clientId is immutable. clientSecret can be rotated via Rotate Client Secret — direct update attempts via PATCH are silently dropped.A default workflow is auto-materialized. When you create an App, Hopae Connect automatically provisions a starter workflow (returned as
defaultWorkflowId) with the passport provider pre-enabled. This lets you start running verifications immediately without first configuring a workflow.If you only need passport-based identity verification, you can use the default workflow as-is. If you want a custom workflow (e.g., different providers, branching logic, custom claims), create a new workflow via Create Workflow and reference its workflowId when starting verifications.Note: creating a custom workflow does NOT delete the default workflow — both will coexist on the App until you explicitly delete one.
