Provides access to build, configuration and status information for this Task Force instance.
Methods:
General Notes: All Scaffold web methods require that the Content Type of your request is "application/scaffold+json". The Host and Content-Length headers are not required. Scaffold's response Content-Type will always be "application/json". The formatting of JSON shown in the examples on this page is not enforced in requests or necessarily followed in responses--it is only shown as such to enhance human readability--assume that you can send (and may receive) any legal JSON that has the same object, property, and array structures.
Gets the services offered by this Task Force instance, including their relative URLs, client assembly signatures, and interface type names.
Example Request:
POST /API/Instance.aspx/GetServices HTTP/1.1
Host: taskforce.epiforge.com
Content-Type: application/scaffold+json
Content-Length: 2
{}Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 150
[
{
"Title": "string",
"Description": "string",
"Url": "string",
"Interface": "string",
"ClientAssembly": "string"
}
]Gets the version of this Task Force instance.
Example Request:
POST /API/Instance.aspx/GetVersion HTTP/1.1
Host: taskforce.epiforge.com
Content-Type: application/scaffold+json
Content-Length: 2
{}Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 48
{
"Major": 0,
"Minor": 0,
"Build": 0
}