Experience QR8 risk-free
Our team will guide you step by step to create your first dynamic QR code for free
Allowing you to see the results during the trial.

Team members

GET https://qr8.tech/api/team-members/{team_id}
curl --request GET \
--url 'https://qr8.tech/api/team-members/{team_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": [
        {
            "id": 1,
            "team_id": 1,
            "user_email": "hello@example.com",
            "access": {
                "read": true,
                "create": true,
                "update": true,
                "delete": false
            },
            "status": 1,
            "datetime": "2025-12-22 02:04:43",
            "last_datetime": null
        }
    ]
}
POST https://qr8.tech/api/teams
Parameters Details Description
team_id Required Integer -
user_email Required String -
access Optional String Array read.all
create.links , create.notification_handlers , create.projects , create.pixels , create.biolinks_blocks , create.qr_codes , create.domains , create.payment_processors , create.signatures , create.splash_pages
update.links , update.notification_handlers , update.projects , update.pixels , update.biolinks_blocks , update.qr_codes , update.domains , update.payment_processors , update.signatures , update.splash_pages
delete.links , delete.notification_handlers , delete.data , delete.projects , delete.pixels , delete.biolinks_blocks , delete.qr_codes , delete.domains , delete.guests_payments , delete.payment_processors , delete.signatures , delete.splash_pages
curl --request POST \
--url 'https://qr8.tech/api/team-members' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'team_id=1' \
--form 'user_email=hello@example.com' \
{
    "data": {
        "id": 1
    }
}
POST https://qr8.tech/api/team-members/{team_member_id}
Parameters Details Description
access Optional String Array read.all
create.links , create.notification_handlers , create.projects , create.pixels , create.biolinks_blocks , create.qr_codes , create.domains , create.payment_processors , create.signatures , create.splash_pages
update.links , update.notification_handlers , update.projects , update.pixels , update.biolinks_blocks , update.qr_codes , update.domains , update.payment_processors , update.signatures , update.splash_pages
delete.links , delete.notification_handlers , delete.data , delete.projects , delete.pixels , delete.biolinks_blocks , delete.qr_codes , delete.domains , delete.guests_payments , delete.payment_processors , delete.signatures , delete.splash_pages
curl --request POST \
--url 'https://qr8.tech/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'access[]=create' \
--form 'access[]=update' \
{
    "data": {
        "id": 1
    }
}
DELETE https://qr8.tech/api/team-members/{team_member_id}
curl --request DELETE \
--url 'https://qr8.tech/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \