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

    CaseDetailsResponse

    {
        "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
    }
    Built with