Account is created upon invitation. Sign in to activate and complete phone or email verification to receive notifications
Request
Body Params  application/json
{
    "members": [
        {
            "email": "string",
            "phone": "string",
            "country_code": "string",
            "member_name": "string",
            "ref_id": "string",
            "role_ids": [
                0
            ]
        }
    ]
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/member/invite' \
--header 'Content-Type: application/json' \
--data-raw '{
    "members": [
        {
            "email": "string",
            "phone": "string",
            "country_code": "string",
            "member_name": "string",
            "ref_id": "string",
            "role_ids": [
                0
            ]
        }
    ]
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "items": [
        {
            "MemberID": 0,
            "MemberName": "string"
        }
    ]
}
Modified at 2025-04-01 04:11:41