integration/extension/get
POST
/integration/extension/getThis returns the list of extensions available for the Equotix One account.
Request
Body Params application/json
domain
string
required
The domain you are assigned to authenticate your Equotix One account.
api_key
string
required
The email address assigned to the user account in your Equotix One.
auth_timestamp
integer
required
The unix timestamp used to sign this API request.
auth_signature
string
required
The calculated signature for this API request.
filter_type
string
optional
Filter the type of extensions to return. Defaults to "module". Accepts "module", "report", "total"
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"filter_type": "string"
}
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
error
array[string]
optional
Returns only if there is an error.
extensions
array [object {6}]
optional
The list of the extensions available if there is no error.
extension_id
integer
required
The extension ID, if installed.
code
string
required
The code of the extension.
name
string
required
The name of the extension.
installed
boolean
required
The status of the extension.
sort_order
integer
required
The ordering of the extension, if installed.
settings
object
required
The saved settings of the extension, if installed.
Example
{
"error": [
"string"
],
"extensions": [
{
"extension_id": 0,
"code": "string",
"name": "string",
"installed": true,
"sort_order": 0,
"settings": {}
}
]
}
Last modified: 4 months ago