Create Protocol
Adds a URI protocol to a pod's configuration. Each pod stores a configuration to indicate which URI protocols can be transformed to a link inside a message in the UI.
Header parameters
sessionTokenstringRequired
Session authentication token.
Body
schemestringRequiredExample:
URI protocol scheme (example: http, https, ftp)
skype
Responses
200
Success
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Invalid session token.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
post
POST /pod/v1/admin/system/protocols HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Content-Type: application/json
Accept: */*
Content-Length: 18
{
"scheme": "skype"
}
{
"scheme": "skype"
}
📘 NamingThe name specified for the
scheme
parameter must start with a letter, must contain only letters, numbers, dashes, dots, and plus characters, and cannot be null.
❗️ Required PermissionsThis endpoint may only be called by Service User accounts with the User Provisioning role.
See Bot Permissions for a list of roles and associated privileges.
Last updated
Was this helpful?