Fetch Dynamic Attributes
GET/fetchDynamicAttribute
This API fetches the dynamic attributes in SSM.
The Authorization
must have Bearer
followed by Token
.
Optional params:
securitysystem
endpoint
dynamicattributes
max
, offset
,
requesttype
- can be ['ACCOUNT', 'PROPOSED ENTITLEMENT OWNER', 'ENTITLEMENT OWNER ATTESTATION', 'ROLE', 'SERVICE ACCOUNT','USER'],
loggedinuser
Request
- application/json
Body
dynamicattributesstring[]
Example:
["parent","child"]
endpointstring[]
Example:
["System1"]
maxstring
Example:
2
offsetstring
Example:
0
securitysystemstring[]
Example:
["System1"]
Responses
- 200
Fetch Dynamic Attributes
Response Headers
Access-Control-Allow-Credentials
string
Access-Control-Allow-Origin
string
Cache-Control
string
Date
string
Expires
string
Referrer-Policy
string
Server
string
Set-Cookie
string
Strict-Transport-Security
string
X-Content-Type-Options
string
- application/json
- Schema
- Example (from schema)
- Fetch Dynamic Attributes
Schema
Array [
]
displaycountnumber
Example:
2
dynamicattributes
object[]
accountscolumnstring
Example:
customproperty11
actiontoperformwhenparentattributechangesstring
Example:
Mapping
attributelablestring
Example:
Select Parent
attributenamestring
Example:
parent
attributetypestring
Example:
SQL MULTISELECT
attributevaluestring
Example:
select 'ERS' as ID,'ers desc' as description UNION select 'FALCON' as ID, 'falcon desc' as description
editablestring
Example:
true
endpointstring
Example:
System1
hideoncreatestring
Example:
false
hideonupdatestring
Example:
false
orderindexstring
Example:
1
parentattributestring
Example:
parent
requesttypestring
Example:
ACCOUNT
requiredstring
Example:
false
securitysystemstring
Example:
System1
showonchildstring
Example:
false
errorcodestring
Example:
0
msgstring
Example:
success
totalcountnumber
Example:
2
{
"displaycount": 2,
"dynamicattributes": [
{
"accountscolumn": "customproperty11",
"actiontoperformwhenparentattributechanges": "Mapping",
"attributelable": "Select Parent",
"attributename": "parent",
"attributetype": "SQL MULTISELECT",
"attributevalue": "select 'ERS' as ID,'ers desc' as description UNION select 'FALCON' as ID, 'falcon desc' as description",
"editable": "true",
"endpoint": "System1",
"hideoncreate": "false",
"hideonupdate": "false",
"orderindex": "1",
"requesttype": "ACCOUNT",
"required": "false",
"securitysystem": "System1",
"showonchild": "false"
},
{
"accountscolumn": "customproperty12",
"actiontoperformwhenparentattributechanges": "Mapping",
"attributelable": "Select Child",
"attributename": "child",
"attributetype": "SQL ENUM",
"attributevalue": "select customername as ID, CUSTOMPROPERTY1 as description from customer where customproperty12 in (${parent})",
"editable": "true",
"endpoint": "System1",
"hideoncreate": "false",
"hideonupdate": "false",
"orderindex": "2",
"parentattribute": "parent",
"requesttype": "ACCOUNT",
"required": "false",
"securitysystem": "System1",
"showonchild": "false"
}
],
"errorcode": "0",
"msg": "success",
"totalcount": 2
}
{
"displaycount": 2,
"dynamicattributes": [
{
"accountscolumn": "customproperty11",
"actiontoperformwhenparentattributechanges": "Mapping",
"attributelable": "Select Parent",
"attributename": "parent",
"attributetype": "SQL MULTISELECT",
"attributevalue": "select 'ERS' as ID,'ers desc' as description UNION select 'FALCON' as ID, 'falcon desc' as description",
"editable": "true",
"endpoint": "System1",
"hideoncreate": "false",
"hideonupdate": "false",
"orderindex": "1",
"requesttype": "ACCOUNT",
"required": "false",
"securitysystem": "System1",
"showonchild": "false"
},
{
"accountscolumn": "customproperty12",
"actiontoperformwhenparentattributechanges": "Mapping",
"attributelable": "Select Child",
"attributename": "child",
"attributetype": "SQL ENUM",
"attributevalue": "select customername as ID, CUSTOMPROPERTY1 as description from customer where customproperty12 in (${parent})",
"editable": "true",
"endpoint": "System1",
"hideoncreate": "false",
"hideonupdate": "false",
"orderindex": "2",
"parentattribute": "parent",
"requesttype": "ACCOUNT",
"required": "false",
"securitysystem": "System1",
"showonchild": "false"
}
],
"errorcode": "0",
"msg": "success",
"totalcount": 2
}