Returns an Application resource based on id or name.
GET/Applications/:applicationId
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.
Request
Path Parameters
id or name of Application resource.
Query Parameters
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.
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.
Responses
- 200
Returns a single Application resource based on the id.
- application/json
- Schema
- Example (from schema)
Schema
IdentityIQ id of the Application.
Unique name for the Application. This name MUST be unique across the entire set of Applications.
A list of localized descriptions of the Application.
The type of the Application.
A list of features of the Application.
owner
object
The owner of the Application.
Display name of the application owner.
id of the application owner.
URI reference of the application owner resource.
applicationSchemas
object
List of the Application Schemas.
The urn of the Application Schema.
The type of Application Schema (account, group, etc.).
The URI of the SCIM resource representing the Entitlement.
meta
Metadata of the SCIM resource.
Datetime this Application was created.
The location of the SCIM resource.
Datetime the Application was last modified.
The version of the SCIM resource.
The SCIM resource type.
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"
]
}
}