statistiche web gratis
The website is still under development and testing. You can sign up to try out the features but no payment will be accepted or issued until the website is officially opened.

Il sito web è ancora in fase di sviluppo e test. Puoi registrarti per provare le funzionalità, ma nessun pagamento sarà accettato o emesso fino all'apertura ufficiale del sito web.

Team members

GET https://mybiopage.net/api/team-members/{team_id}
curl --request GET \
--url 'https://mybiopage.net/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://mybiopage.net/api/teams
Parametri Details Description
team_id Richiesto Intero -
user_email Richiesto Stringa -
access Opzionale Stringa Array read.all
create.links , create.pixels , create.projects , create.biolinks_blocks , create.qr_codes , create.domains , create.payment_processors , create.signatures , create.documents , create.images , create.transcriptions , create.syntheses , create.splash_pages
update.links , update.pixels , update.projects , update.biolinks_blocks , update.qr_codes , update.domains , update.payment_processors , update.signatures , update.documents , update.images , update.transcriptions , update.syntheses , update.splash_pages
delete.links , delete.pixels , delete.projects , delete.data , delete.biolinks_blocks , delete.qr_codes , delete.domains , delete.guests_payments , delete.payment_processors , delete.signatures , delete.documents , delete.images , delete.transcriptions , delete.syntheses , delete.splash_pages
curl --request POST \
--url 'https://mybiopage.net/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://mybiopage.net/api/team-members/{team_member_id}
Parametri Details Description
access Opzionale Stringa Array read.all
create.links , create.pixels , create.projects , create.biolinks_blocks , create.qr_codes , create.domains , create.payment_processors , create.signatures , create.documents , create.images , create.transcriptions , create.syntheses , create.splash_pages
update.links , update.pixels , update.projects , update.biolinks_blocks , update.qr_codes , update.domains , update.payment_processors , update.signatures , update.documents , update.images , update.transcriptions , update.syntheses , update.splash_pages
delete.links , delete.pixels , delete.projects , delete.data , delete.biolinks_blocks , delete.qr_codes , delete.domains , delete.guests_payments , delete.payment_processors , delete.signatures , delete.documents , delete.images , delete.transcriptions , delete.syntheses , delete.splash_pages
curl --request POST \
--url 'https://mybiopage.net/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://mybiopage.net/api/team-members/{team_member_id}
curl --request DELETE \
--url 'https://mybiopage.net/api/team-members/{team_member_id}' \
--header 'Authorization: Bearer {api_key}' \