{
    "info": {
        "name": "IB User Status API",
        "_postman_id": "a7c9d3f1-ib-user-status",
        "description": "Collection for IB user-status endpoint",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://your-domain.com"
        },
        {
            "key": "apiKey",
            "value": "ib_live_your_api_key_here"
        },
        {
            "key": "userId",
            "value": "a11b22dcc-000-0000-00000"
        }
    ],
    "item": [
        {
            "name": "Get User Status",
            "request": {
                "method": "GET",
                "header": [
                    {
                        "key": "Authorization",
                        "value": "Bearer {{apiKey}}",
                        "type": "text"
                    }
                ],
                "url": {
                    "raw": "{{baseUrl}}/api/ib/user-status?user_id={{userId}}",
                    "host": [
                        "{{baseUrl}}"
                    ],
                    "path": [
                        "api",
                        "ib",
                        "user-status"
                    ],
                    "query": [
                        {
                            "key": "user_id",
                            "value": "{{userId}}"
                        }
                    ]
                },
                "description": "Check whether a user is under IB and when they joined"
            },
            "response": []
        }
    ]
}