Returns an Application resource based on id or name.​
The Application resource with matching id or name is returned. Attributes to include in the response can be specified with the 'attributes' query parameter. Attributes to exclude from the response can be specified with the 'excludedAttributes' query parameter. The schema related to Application is:
- urn:ietf:params:scim:schemas:sailpoint:1.0:Application.
Path Parameters
- applicationId string required
id or name of Application resource.
Query Parameters
- attributes string
The Application attributes to include in the response. The query parameter value is a comma-separated list of fields to be returned in the response for each Application. The attributes listed will be the only ones returned in the response, with the exception of id, schemas, and meta, which are always returned for an Application.
- excludedAttributes string
The Application attributes to exclude frome the response. The query parameter value is a comma-separated list of fields to be excluded from the response for each Application. The attributes listed will be the only ones excluded frome the response, with the exception of id, schemas, and meta, which are always returned for an Application.
- 200
Returns a single Application resource based on the id.
- application/json
- Schema
- Example (from schema)
Schema
- id string
IdentityIQ id of the Application.
- name string
Unique name for the Application. This name MUST be unique across the entire set of Applications.
- descriptions array
A list of localized descriptions of the Application.
- type string
The type of the Application.
- features array
A list of features of the Application.
owner object
The owner of the Application.
displayName stringDisplay name of the application owner.
value stringid of the application owner.
$ref stringURI reference of the application owner resource.
applicationSchemas object
List of the Application Schemas.
value stringThe urn of the Application Schema.
type stringThe type of Application Schema (account, group, etc.).
$ref stringThe URI of the SCIM resource representing the Entitlement.
meta
Metadata of the SCIM resource.
created date-timeDatetime this Application was created.
location stringThe location of the SCIM resource.
lastModified date-timeDatetime the Application was last modified.
version stringThe version of the SCIM resource.
resourceType stringThe SCIM resource type.
schemas string[]The schemas involved in the SCIM resource.
{
"id": "c0b4568a4fe7458c434ee77d1fbt156b",
"name": "Active Directory",
"descriptions": [
{
"locale": "en_US",
"value": "The main Active_Directory domain data for the corporate network."
}
],
"type": "Active Directory - Direct",
"features": [
[
"DIRECT_PERMISSIONS",
"NO_RANDOM_ACCESS",
"DISCOVER_SCHEMA"
]
],
"owner": {
"displayName": "Joe Smith",
"value": "c0b4568a4fe7458c434ee77d1fbt156b",
"$ref": "http://localhost:8080/identityiq/scim/v2/Users/c0b4568a4fe7458c434ee77d1fbt156b"
},
"applicationSchemas": {
"value": "urn:ietf:params:scim:schemas:sailpoint:1.0:Application:Schema:Active Directory:account",
"type": "account",
"$ref": "http://localhost:8080/identityiq/scim/v2/Schemas/urn:ietf:params:scim:schemas:sailpoint:1.0:Application:Schema:Active%20Directory:account"
},
"meta": {
"created": "2022-02-11T01:34:04.074-05:00",
"location": "http://localhost:8080/identityiq/scim/v2/Applications/c0b4568a4fe7458c434ee77d1fbt156b",
"lastModified": "2022-02-11T01:08:45.866-05:00",
"version": "W\"1644561244074\"",
"resourceType": "Application",
"schemas": [
"urn:ietf:params:scim:schemas:sailpoint:1.0:Application"
]
}
}