Miembros del equipo
GET https://sqr.co/api/team-members/{team_id}
curl --request GET \
--url 'https://sqr.co/api/team-members/{team_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://sqr.co/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": "2022-06-05 14:37:10",
"last_datetime": "2022-06-07 13:04:31"
}
]
}
POST https://sqr.co/api/teams
Parámetros | Details | Description |
---|---|---|
team_id | Requerido Entero | - |
user_email | Requerido String | - |
access | Opcional String Array |
read.all create.links , create.pixels , create.projects , create.qr_codes , create.barcodes , create.domains update.links , update.pixels , update.projects , update.qr_codes , update.barcodes , update.domains delete.links , delete.pixels , delete.projects , delete.qr_codes , delete.barcodes , delete.domains |
curl --request POST \
--url 'https://sqr.co/api/team-members' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'team_id=1' \
--form 'user_email=hello@example.com' \
--url 'https://sqr.co/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://sqr.co/api/team-members/{team_member_id}
Parámetros | Details | Description |
---|---|---|
access | Opcional String Array |
read.all create.links , create.pixels , create.projects , create.qr_codes , create.barcodes , create.domains update.links , update.pixels , update.projects , update.qr_codes , update.barcodes , update.domains delete.links , delete.pixels , delete.projects , delete.qr_codes , delete.barcodes , delete.domains |
curl --request POST \
--url 'https://sqr.co/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'access[]=create' \
--form 'access[]=update' \
--url 'https://sqr.co/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://sqr.co/api/team-members/{team_member_id}
curl --request DELETE \
--url 'https://sqr.co/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://sqr.co/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \