Footer URL

Get

get

Retrieve the footer URLs from the Theme.

Path parameters
idinteger · int32Required

Theme ID.

Responses
200

Success

application/json; api-version=1.0
get
GET /api/Theme/{id}/FooterURL HTTP/1.1
Host: 
Accept: */*
[
  {
    "url": "text",
    "text": "text",
    "tooltip": "text"
  }
]

Add

post

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

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

Delete

delete

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

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?