Documentation ExposeService (1.1)

The Expose namespace has Entities and Operations common to all namespaces or things that does not fit under any other namespace.

Download OpenAPI description
Languages
Servers
https://demo.storm.io/api/1.1/

ErrorMessages

Operations

Ping

Operations

Process

Operations

Process a batch of requests

Request

Processes a batch of requests. Requests are derived from all methods where the method name and 'Request' make up the request type. The same applies for the responses. Request properties are taken from the parameters of the method. Ex: GetApplication(cultureCode) will have a Request of type GetApplicationRequest with a property CultureCode. Add "__type":"[TheMethod]Request:Enferno.Services.Contracts.Expose" to specify Request type and then the requests properties.

Bodyrequired

Specifies the requests to process.

Array []
curl -i -X POST \
  https://demo.storm.io/api/1.1/ExposeService.svc/rest/Process \
  -H 'Content-Type: application/json' \
  -d '[
    {
      "__type": "string"
    }
  ]'

Responses

Success

BodyArray []
Response
[ { "__type": "string" } ]