Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://apix.us.amity.co/api/v3/network-settings/shareable-deep-links \
--header 'Authorization: Bearer <token>'{
"domain": "myapp.com",
"patterns": {
"posts": "/posts/{postId}",
"communities": "/communities/{communityId}",
"users": "/users/{userId}",
"livestreams": "/livestreams/{livestreamId}"
}
}Get shareable deep links configuration.
curl --request GET \
--url https://apix.us.amity.co/api/v3/network-settings/shareable-deep-links \
--header 'Authorization: Bearer <token>'{
"domain": "myapp.com",
"patterns": {
"posts": "/posts/{postId}",
"communities": "/communities/{communityId}",
"users": "/users/{userId}",
"livestreams": "/livestreams/{livestreamId}"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.