How can we help?

Searching:

0 results found

Applications/Get (List)

GET /odata/Applications/

Description

Gets a list of all the Applications assigned to the requesting user. A Tenant user gets a list of all the Applications that belong to the Tenant and its Sub-tenants.

To get the details of a specific application, refer to Applications/Get (Specific).

See the following for request and response details:

See Also

Request ‒ Applications/Get (List)

Property Type Description Mandatory
appId String A unique identifier that is automatically generated by Axonize for this Application.

Specify the appId of the Master Application in order to receive a list of the Applications that belong to it.

Y

Example JSON Applications/Get (List) Request

curl -X GET \

https://api.stg.axonize.com/odata/applications \

-H ‘Authorization: Token’ \

-H ‘Content-Type: application/json’ \

-H ‘appId: 801A048A-9F23-429F-BF0D-B6D35B22771E’

Response ‒ Applications/Get (List)

For each Application, the response provides the properties in Applications/Post.

Example JSON Applications/Get (List) Response

Status 200 ‒ OK

{

“@odata.context”: “https://stg-axonizeapi-axonize.stg-ase-axonize.p.azurewebsites.net/odata/$metadata#Applications”,

“value”: [

{

“name”: “Sanity”,

“tenantId”: “5851631d4e41925b98f01234”,

“allowedOrigins”: [],

“active”: false,

“logo”: null,

“cultureInfo”: null,

“uniqueIdentifier”: “sanity”,

“parentId”: “be517433-c4b8-4788-9258-1ba220431234”,

“allowedApplications”: [],

“usersContainerDatabase”: “801A048A-9F23-429F-BF0D-B6D35B22771E”,

“phoneCountryCode”: null,

“diagram”: null,

“retention”: 0,

“timezone”:”Asia/Jerusalem”

“id”: “5a84112171da9b142c306d7c”,

“appId”: “801A048A-9F23-429F-BF0D-B6D35B22771E”,

“createDate”: “2018-02-14T10:36:17.113Z”,

“createUser”: “1234”,

“updateDate”: “0001-01-01T00:00:00Z”,

“updateUser”: null,

“passwordPolicy”: null,

“additionalProperties”: []

},

{

“name”: “Transport”,

“tenantId”: “5851631d4e41925b98f01234”,

“allowedOrigins”: [],

“active”: false,

“logo”: null,

“cultureInfo”: “en”,

“uniqueIdentifier”: “transport”,

“parentId”: “801A048A-9F23-429F-BF0D-B6D35B22771E”,

“allowedApplications”: [

“63f96620-ad25-4e4f-911a-a851d9e31234”

],

“usersContainerDatabase”: null,

“phoneCountryCode”: null,

“diagram”: null,

“retention”: 15,

“timezone”:”Asia/Jerusalem”

“usersContainerDatabase”: “ABCD”,

“id”: “585166654e41925b98f01234”,

“appId”: “801A048A-9F23-429F-BF0D-B6D35B22771E”,

“createDate”: “0001-01-01T00:00:00Z”,

“createUser”: null,

“updateDate”: “0001-01-01T00:00:00Z”,

“updateUser”: null,

“passwordPolicy”: null,

“additionalProperties”: []

}

]

}