You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This endpoint can be used to update the share_url and share_qr_code_url properties on your account.
Changes will be reflected in v3/users/me and are also returned in the json response.
Enable
To enable profile sharing:
POST /v3/users/features/shareHost: api.groupme.com:443X-Access-Token: {{TOKEN}}
{
"status": "enable"
}
Calling this endpoint while sharing is already enabled will generate a new share token (OtzZPXiX in this case) hereby invalidating the previous link/qr code.
Disable
To disable profile sharing:
POST /v3/users/features/shareHost: api.groupme.com:443X-Access-Token: {{TOKEN}}
{
"status": "disable"
}
Response:
{
"share_url": null,
"share_qr_code_url": null
}
Calling this endpoint while sharing is already disabled will do nothing, returning the exact same response again with both fields set to null.
The text was updated successfully, but these errors were encountered:
This endpoint can be used to update the
share_url
andshare_qr_code_url
properties on your account.Changes will be reflected in
v3/users/me
and are also returned in the json response.Enable
To enable profile sharing:
Response:
Calling this endpoint while sharing is already enabled will generate a new share token (
OtzZPXiX
in this case) hereby invalidating the previous link/qr code.Disable
To disable profile sharing:
Response:
Calling this endpoint while sharing is already disabled will do nothing, returning the exact same response again with both fields set to
null
.The text was updated successfully, but these errors were encountered: