Returns all the applications or a specific application by name
string
default response
any
1
2
curl --request GET \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application'
Adds a new application
boolean
new application entity
boolean
boolean
AttributeEntityList
string
DirectoryMappingEntityList
integer
Link
boolean
string
PasswordEntity
default response
any
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
curl --request POST \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application' \
--header 'Content-Type: application/json' \
--data '{
"active": true,
"aliasingEnabled": true,
"attributes": {
"callback": {},
"empty": true,
"link": {
"href": "<string>",
"rel": "<string>"
}
},
"description": "<string>",
"directoryMappings": {
"empty": true,
"link": {
"href": "<string>",
"rel": "<string>"
}
},
"id": 2154,
"link": {
"href": "<string>",
"rel": "<string>"
},
"lowercaseOutput": true,
"name": "<string>",
"password": {
"link": {
"href": "<string>",
"rel": "<string>"
},
"value": "<string>"
},
"remoteAddresses": {
"empty": true,
"link": {
"href": "<string>",
"rel": "<string>"
}
},
"type": "<string>"
}'
Returns the specified application
integer
Requireddefault response
any
1
2
curl --request GET \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application/{applicationId}'
Updates the specified application
integer
Requirednew application entity
boolean
boolean
AttributeEntityList
string
DirectoryMappingEntityList
integer
Link
boolean
string
PasswordEntity
default response
any
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
curl --request PUT \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application/{applicationId}' \
--header 'Content-Type: application/json' \
--data '{
"active": true,
"aliasingEnabled": true,
"attributes": {
"callback": {},
"empty": true,
"link": {
"href": "<string>",
"rel": "<string>"
}
},
"description": "<string>",
"directoryMappings": {
"empty": true,
"link": {
"href": "<string>",
"rel": "<string>"
}
},
"id": 2154,
"link": {
"href": "<string>",
"rel": "<string>"
},
"lowercaseOutput": true,
"name": "<string>",
"password": {
"link": {
"href": "<string>",
"rel": "<string>"
},
"value": "<string>"
},
"remoteAddresses": {
"empty": true,
"link": {
"href": "<string>",
"rel": "<string>"
}
},
"type": "<string>"
}'
Removes the specified application
integer
Requireddefault response
any
1
2
curl --request DELETE \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application/{applicationId}'
Returns the remote addresses of the specified application
integer
Requireddefault response
any
1
2
curl --request GET \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application/{applicationId}/remote_address'
Adds the remote address to the specified application
integer
Requiredremote address entity
Link
string
default response
any
1
2
3
4
5
6
7
8
9
10
curl --request POST \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application/{applicationId}/remote_address' \
--header 'Content-Type: application/json' \
--data '{
"link": {
"href": "<string>",
"rel": "<string>"
},
"value": "<string>"
}'
Removes the remote address of the specified application
integer
Requiredstring
default response
any
1
2
curl --request DELETE \
--url 'http://{baseurl}/rest/rest/appmanagement/1/application/{applicationId}/remote_address'
Rate this page: