Skip to content

Storm Query API Documentation (2.0)

Storm Query API is an API based on OData V4. It is an API to fill the need for data from Storm in integration services that do not have direct access to Storm’s data and data models.

Download OpenAPI description
Languages
Servers

https://query.storm.io/Query/2.0/

Operations

Request

Get Country

curl -i -X GET \
  https://query.storm.io/Query/2.0/Core/Countries

Responses

Success

Bodyapplication/jsonArray [
Idinteger(int32)

Id. Key property.

Codestring

Code. MaxLength: 3. Nullable.

DefaultNamestring

DefaultName. MaxLength: 50. Nullable.

PhoneAreaCodeinteger(int32)

PhoneAreaCode. Nullable.

IsActiveboolean

IsActive.

Createdstring(date-time)

Created.

CreatedByinteger(int32)

CreatedBy.

Updatedstring(date-time)

Updated. Nullable.

UpdatedByinteger(int32)

UpdatedBy. Nullable.

CulturesArray of objects(Enferno.Storm.Query.Api.DataContexts.StormCore.CountryCulture)(Enferno.Storm.Query.Api.DataContexts.StormCore.CountryCulture)

Cultures.

]
Response
application/json
[ { "Id": 0, "Code": "string", "DefaultName": "string", "PhoneAreaCode": 0, "IsActive": true, "Created": "2019-08-24T14:15:22Z", "CreatedBy": 0, "Updated": "2019-08-24T14:15:22Z", "UpdatedBy": 0, "Cultures": [] } ]

Request

Get Currency

curl -i -X GET \
  https://query.storm.io/Query/2.0/Core/Currencies

Responses

Success

Bodyapplication/jsonArray [
Idinteger(int32)

Id. Key property.

Codestring

Code. MaxLength: 3. Nullable.

DefaultNamestring

DefaultName. MaxLength: 50. Nullable.

ExchangeRatenumber(decimal)

ExchangeRate.

DefaultPrefixstring

DefaultPrefix. MaxLength: 10. Nullable.

DefaultSuffixstring

DefaultSuffix. MaxLength: 10. Nullable.

IsActiveboolean

IsActive.

Createdstring(date-time)

Created.

CreatedByinteger(int32)

CreatedBy.

Updatedstring(date-time)

Updated. Nullable.

UpdatedByinteger(int32)

UpdatedBy. Nullable.

CulturesArray of objects(Enferno.Storm.Query.Api.DataContexts.StormCore.CurrencyCulture)(Enferno.Storm.Query.Api.DataContexts.StormCore.CurrencyCulture)

Cultures.

]
Response
application/json
[ { "Id": 0, "Code": "string", "DefaultName": "string", "ExchangeRate": 0, "DefaultPrefix": "string", "DefaultSuffix": "string", "IsActive": true, "Created": "2019-08-24T14:15:22Z", "CreatedBy": 0, "Updated": "2019-08-24T14:15:22Z", "UpdatedBy": 0, "Cultures": [] } ]

Request

Get File

curl -i -X GET \
  https://query.storm.io/Query/2.0/Core/Files

Responses

Success

Bodyapplication/jsonArray [
Idinteger(int32)

Id. Key property.

DefaultNamestring

DefaultName. MaxLength: 50. Nullable.

DefaultDescriptionstring

DefaultDescription. MaxLength: 500. Nullable.

TypeIdinteger(int32)

TypeId.

DefaultPixelWidthinteger(int32)

DefaultPixelWidth. Nullable.

DefaultPixelHeightinteger(int32)

DefaultPixelHeight. Nullable.

DefaultMaxSizeinteger(int32)

DefaultMaxSize. Nullable.

DefaultThumbnailPixelWidthinteger(int32)

DefaultThumbnailPixelWidth. Nullable.

DefaultThumbnailPixelHeightinteger(int32)

DefaultThumbnailPixelHeight. Nullable.

DefaultThumbnailMaxSizeinteger(int32)

DefaultThumbnailMaxSize. Nullable.

IsHiddenboolean

IsHidden.

IsActiveboolean

IsActive.

Createdstring(date-time)

Created.

CreatedByinteger(int32)

CreatedBy.

Updatedstring(date-time)

Updated. Nullable.

UpdatedByinteger(int32)

UpdatedBy. Nullable.

CulturesArray of objects(Enferno.Storm.Query.Api.DataContexts.StormCore.FileCulture)(Enferno.Storm.Query.Api.DataContexts.StormCore.FileCulture)

Cultures.

Typeobject(Enferno.Storm.Query.Api.DataContexts.StormCore.FileType)(Enferno.Storm.Query.Api.DataContexts.StormCore.FileType)
]
Response
application/json
[ { "Id": 0, "DefaultName": "string", "DefaultDescription": "string", "TypeId": 0, "DefaultPixelWidth": 0, "DefaultPixelHeight": 0, "DefaultMaxSize": 0, "DefaultThumbnailPixelWidth": 0, "DefaultThumbnailPixelHeight": 0, "DefaultThumbnailMaxSize": 0, "IsHidden": true, "IsActive": true, "Created": "2019-08-24T14:15:22Z", "CreatedBy": 0, "Updated": "2019-08-24T14:15:22Z", "UpdatedBy": 0, "Cultures": [], "Type": {} } ]