1. Cases
ImmigraFlow API
  • Check
    • Check case status
      POST
  • Users
    • Verify email token
      POST
    • List users
      GET
    • Create user
      POST
    • Get user
      GET
    • Update user
      PUT
  • Cases
    • List user cases
      GET
    • Create case
      POST
    • Get one case
      GET
    • Update case
      PUT
  • Webhooks
    • List webhooks
      GET
    • Create webhook
      POST
    • Get webhook
      GET
    • Update webhook
      PUT
    • Delete webhook
      DELETE
  • Schemas
    • ErrorEnvelope
    • CheckRequest
    • User
    • UserCreateRequest
    • UserUpdateRequest
    • CaseSummary
    • CaseCreateRequest
    • CaseUpdateRequest
    • StatusUpdate
    • CaseDetailsResponse
    • CheckResponse
    • Webhook
    • WebhookCreateRequest
    • WebhookUpdateRequest
  1. Cases

Get one case

GET
/v1/users/{user_id}/cases/{case_ref}
Returns one case and status history.
case_ref accepts numeric internal id or public user_case_id (e.g. FLOW1234567).

Request

Authorization
API Key
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
API Key
Add parameter in header
X-API-SECRET
Example:
X-API-SECRET: ********************
or
Path Params

Responses

🟢200
application/json
Case details
Body

🟠400BadRequest
🟠401Unauthorized
🟠404NotFound
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://devapi.immigraflow.com/v1/users//cases/' \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>'
Response Response Example
200 - Example 1
{
    "case": {
        "id": 0,
        "user_case_id": "string",
        "receipt_number": "string",
        "description": "string",
        "created_at": "2019-08-24T14:15:22.123Z",
        "last_checked": "2019-08-24T14:15:22.123Z",
        "active": true,
        "user": {
            "id": 0,
            "email": "user@example.com",
            "name": "string",
            "phone": "string",
            "notify_by_email": true,
            "notify_by_whatsapp": true,
            "status": "active",
            "created_at": "2019-08-24T14:15:22.123Z",
            "updated_at": "2019-08-24T14:15:22.123Z"
        }
    },
    "status_updates": [
        {
            "id": 0,
            "status_code": "string",
            "status_description": "string",
            "form_type": "string",
            "detail_message": "string",
            "status_code_es": "string",
            "status_description_es": "string",
            "submitted_date": "2019-08-24T14:15:22.123Z",
            "modified_date": "2019-08-24T14:15:22.123Z",
            "history": [
                {}
            ],
            "timestamp": "2019-08-24T14:15:22.123Z",
            "notified": 0,
            "email_notify_status": "skipped",
            "whatsapp_notify_status": "skipped",
            "email_notify_attempts": 0,
            "whatsapp_notify_attempts": 0,
            "email_notify_last_error": "string",
            "whatsapp_notify_last_error": "string",
            "email_notify_sent_at": "2019-08-24T14:15:22.123Z",
            "whatsapp_notify_sent_at": "2019-08-24T14:15:22.123Z"
        }
    ],
    "update_count": 0
}
Modified at 2026-04-20 08:31:25
Previous
Create case
Next
Update case
Built with