GET algorithm/all
Get all active algorithms
Request Information
URI
https://ofd-api.blueprintcpq.net/algorithm/all
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of algorithms
Collection of Algorithm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Script | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "bba586f9-e129-402b-a295-34e984a0dd38",
"Name": "sample string 2",
"Script": "sample string 3"
},
{
"Id": "bba586f9-e129-402b-a295-34e984a0dd38",
"Name": "sample string 2",
"Script": "sample string 3"
}
]
text/html
Sample:
[{"Id":"bba586f9-e129-402b-a295-34e984a0dd38","Name":"sample string 2","Script":"sample string 3"},{"Id":"bba586f9-e129-402b-a295-34e984a0dd38","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>bba586f9-e129-402b-a295-34e984a0dd38</Id>
<Name>sample string 2</Name>
<Script>sample string 3</Script>
</Algorithm>
<Algorithm>
<Id>bba586f9-e129-402b-a295-34e984a0dd38</Id>
<Name>sample string 2</Name>
<Script>sample string 3</Script>
</Algorithm>
</ArrayOfAlgorithm>