Footer URL
Retrieve the footer URLs from the Theme.
Path parameters
idinteger · int32Required
Theme ID.
Responses
200
Success
application/json; api-version=1.0
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
get
GET /api/Theme/{id}/FooterURL HTTP/1.1
Host:
Accept: */*
[
{
"url": "text",
"text": "text",
"tooltip": "text"
}
]
Add the specified footer URL to the Theme.
Path parameters
idinteger · int32Required
Theme ID
Body
Add a footer URL in the RAS Theme
urlstring | nullableRequired
The URL
textstring | nullableRequired
The text
tooltipstring | nullableOptional
The tooltip
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
post
POST /api/Theme/{id}/FooterURL HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 45
{
"url": "text",
"text": "text",
"tooltip": "text"
}
No content
Remove the specified footer URL from the Theme.
Path parameters
idinteger · int32Required
Theme ID
Body
Remove a footer URL from the RAS Theme
urlstring | nullableRequired
The URL
textstring | nullableRequired
The text
tooltipstring | nullableOptional
The tooltip
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
delete
DELETE /api/Theme/{id}/FooterURL HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 45
{
"url": "text",
"text": "text",
"tooltip": "text"
}
No content
Last updated
Was this helpful?