GET algorithm/all

Get all active algorithms

Request Information

URI

https://scoregroup-uat-api.xaitcpq.net/algorithm/all

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of algorithms

Collection of Algorithm
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Script

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "a3017c1c-7cd3-4dea-88ca-948582cc3fb8",
    "Name": "sample string 2",
    "Script": "sample string 3"
  },
  {
    "Id": "a3017c1c-7cd3-4dea-88ca-948582cc3fb8",
    "Name": "sample string 2",
    "Script": "sample string 3"
  }
]

text/html

Sample:
[{"Id":"a3017c1c-7cd3-4dea-88ca-948582cc3fb8","Name":"sample string 2","Script":"sample string 3"},{"Id":"a3017c1c-7cd3-4dea-88ca-948582cc3fb8","Name":"sample string 2","Script":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfAlgorithm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
  <Algorithm>
    <Id>a3017c1c-7cd3-4dea-88ca-948582cc3fb8</Id>
    <Name>sample string 2</Name>
    <Script>sample string 3</Script>
  </Algorithm>
  <Algorithm>
    <Id>a3017c1c-7cd3-4dea-88ca-948582cc3fb8</Id>
    <Name>sample string 2</Name>
    <Script>sample string 3</Script>
  </Algorithm>
</ArrayOfAlgorithm>