Your suggested change has been received. Thank you.
Download OpenAPI specification:Download
RITM is a delegated identity management system that allows organisations to securely connect identities through roles and their associated entitlements, while leveraging self-service capabilities.
Introduction to the RITM API
Next to technical API's that are typically used by the RITM platform itself, OneWelcome also provides more functional oriented API's to ease integrations with the customers' applications. This specification is meant to provide information and guidance with respect to the functional RITM API's.
Versions of the API
Our API's are versioned and will remain backwards-compatible for 6 months after the end-of-life for this particular version is announced. Newer versions are expected to be compatible with old versions but both request parameters and response bodies could be subject to changes between versions.
The response body for an API call could contain more information then described in this specification and users of the API should ignore this extra information.
Calls related to retrieving access and authorisation information (both self-service and admin).
The profile of a user contains several attributes with information about this user. This API retrieves attributes and their values related to the profile of the authenticated user.
This endpoint:
attributesOf | string Default: "MANAGEMENT_USER_EDIT" Enum: "AFFECTED_IDENTITIES" "API_USER_CREATE" "MANAGEMENT_IMPORT" "MANAGEMENT_USER_ADD" "MANAGEMENT_USER_EDIT" "MANAGEMENT_USER_PROFILE" "MANAGEMENT_USER_INVITE" "MANAGEMENT_USER_SEND_INVITATION" "MANAGEMENT_USERS" "MASS_UPDATES" "PROFILE_MANAGED_IDENTITIES" "REPORTS_USERS" "STRUCTURES" "USER_PROFILE" Defined set of attributes whereby the possible options relate to the corresponding functionality in the RITM UI. The MANAGEMENT_USER_EDIT option, for example, will return the profile information (if available) that can also be found on the first tab of the "Edit user" page in the RITM UI.
|
{- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "name": {
- "givenName": "John",
- "familyName": "Doe"
}
}
A user with one or more RITM Admin roles could have the appropriate entitlements to assign roles to their managed identities. This endpoint can be used to retrieve:
application | string Example: application=application_client_id |
structureCode required | string Example: structureCode=structure-t04wu2fQbnEk |
groupCode required | string Example: groupCode=my_defined_groupcode |
{- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "cascadableAdminRoles": [ ],
- "cascadablePersonalRoles": [ ],
- "cascadableAccessRoles": [ ]
}
Any user could potentially have been assigned one or more roles related to third party application access. This API will retrieve all the third party application roles, for a given application, that are assigned to a particular user.
This information could either be retrieved for the user himself (authenticating with an OAuth Access Token) or for any of the managed identities of the caller (typically by authenticating with an OAuth Access Token or API-Key). application will always be required as a request parameter. The application is the actual application code as defined in RITM and could be typically seen as the client_id in case of an OAuth/OIDC application or a SAML EntityID of the SP.
uid | string (uid) Example: uid=8d90b808-1e93-11eb-adc1-0242ac120002 If uid is not included as a parameter, the API will retrieve the application specific roles of the authenticated user. |
application required | string Example: application=application_client_id |
{- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "application": "drift",
- "applicationRoles": [ ]
}
Any user with will have several attributes as part of their profile but they will also have one or more group memberships and potentially one or more assigned roles. This API retrieves all the mentioned information for one specific managed identity (user) or all the managed identities of the authenticated user.
uid | string (uid) Example: uid=8d90b808-1e93-11eb-adc1-0242ac120002 If uid is not included as a parameter, the API will retrieve all managed identities of the authenticated user (with pagination). |
attributesOf | string Default: "MANAGEMENT_USER_EDIT" Enum: "AFFECTED_IDENTITIES" "API_USER_CREATE" "MANAGEMENT_IMPORT" "MANAGEMENT_USER_ADD" "MANAGEMENT_USER_EDIT" "MANAGEMENT_USER_PROFILE" "MANAGEMENT_USER_INVITE" "MANAGEMENT_USER_SEND_INVITATION" "MANAGEMENT_USERS" "MASS_UPDATES" "PROFILE_MANAGED_IDENTITIES" "REPORTS_USERS" "STRUCTURES" "USER_PROFILE" Defined set of attributes whereby the possible options relate to the corresponding functionality in the RITM UI. The MANAGEMENT_USER_EDIT option, for example, will return the profile information (if available) that can also be found on the first tab of the "Edit user" page in the RITM UI.
|
structureCode | string Example: structureCode=structure-t04wu2fQbnEk structureCode is an optional filter to only retrieve the managed identities from that particular structure. structureCode is only required if groupCode is also used. |
groupCode | string Example: groupCode=my_code_for_group1 groupCode is an optional filter to only retrieve the managed identities from that particular group. |
showGroupAttributes | boolean Default: true Example: showGroupAttributes=false showGroupAttributes is an optional filter to be able to specify if custom group attributes should also be included in the response or not. By default it is set to true. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "profileInformation": {
- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "name": {
- "givenName": "John",
- "familyName": "Doe"
}, - "emails": [
- {
- "type": "work",
- "value": "john.p.doe@example.com",
- "primary": true
}
]
}, - "roleAssignments": {
- "adminRoles": [
- {
- "code": "role-wYSRxmeChQdJ",
- "name": "Customer Care",
- "startDate": "2021-08-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z"
}
], - "personalRoles": [
- {
- "code": "role-LJxdruuzjERF",
- "name": "Self Service",
- "startDate": "2021-01-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z"
}
], - "accessRoles": [
- {
- "code": "role-JgvpFeGFykyd",
- "name": "Drift - Account Owner",
- "startDate": "2021-04-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z",
- "assignedStructureCode": "structure-t04wu2fQbnEk",
- "assignedStructureGroup": "my_code_for_group1",
- "applications": [
- {
- "code": "drift",
- "name": "Drift",
- "applicationRoles": [
- "Account Owner"
]
}
]
}
]
}, - "structureMemberships": [
- {
- "code": "structure-t04wu2fQbnEk",
- "name": "Structure 1",
- "groupMemberships": [
- {
- "code": "my_code_for_group1",
- "name": "Group 1",
- "attributes": {
- "vatNumber": 63826382
}
}
]
}
]
}
]
}
Users with RITM Admin roles can retrieve group memberships for a managed identity by using this API.
uid required | string (uid) Example: uid=8d90b808-1e93-11eb-adc1-0242ac120002 |
showGroupAttributes | boolean Default: true Example: showGroupAttributes=false showGroupAttributes is an optional filter to be able to specify if custom group attributes should also be included in the response or not. By default it is set to true. |
{- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "structureMemberships": [
- {
- "code": "structure-t04wu2fQbnEk",
- "name": "Structure 1",
- "groupMemberships": [
- {
- "code": "my_code_for_group1",
- "name": "Group 1",
- "attributes": {
- "vatNumber": 63826382
}
}
]
}
]
}
A user with a RITM Admin role with the appropriate rights has the ability to create users. These can either be so-called ACTIVE users where all profile information is passed or INACTIVE users that are created to trigger an invitation flow that could allow for profile enrichment.
required | object (profile) |
required | Array of objects |
Array of objects |
{- "profileInformation": {
- "name": {
- "givenName": "Firstname",
- "familyName": "Lastname"
}, - "emails": [
- {
- "value": "firstname.lastname@mailinator.com",
- "type": "work",
- "primary": true
}
], - "urn:scim:schemas:extension:iwelcome:1.0": {
- "state": "INACTIVE"
}
}, - "structureMemberships": [
- {
- "code": "structure-t04wu2fQbnEk",
- "groupMemberships": [
- {
- "code": "my_code_for_group1"
}
]
}
], - "roleAssignments": [
- {
- "code": "role-LJxdruuzjERF"
}
]
}
{- "profileInformation": {
- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "name": {
- "givenName": "Firstname",
- "familyName": "Lastname"
}, - "emails": [
- {
- "value": "firstname.lastname@mailinator.com",
- "type": "work",
- "primary": true
}
], - "urn:scim:schemas:extension:iwelcome:1.0": {
- "state": "INACTIVE"
}
}, - "roleAssignments": {
- "adminRoles": [ ],
- "personalRoles": [
- {
- "code": "role-LJxdruuzjERF",
- "name": "Self Service",
- "startDate": "2021-01-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z"
}
], - "accessRoles": [ ]
}, - "structureMemberships": [
- {
- "code": "structure-t04wu2fQbnEk",
- "name": "Structure 1",
- "groupMemberships": [
- {
- "code": "my_code_for_group1",
- "name": "Group 1"
}
]
}
]
}
A user with a RITM Admin role with the appropriate rights has the ability to edit his managed identities. The group and role management options for these users depend on the specific entitlements this admin user has on the affected user. Any user with the appropriate RITM Personal role and attribute entitlements is able to edit their profile. Group memberships and role assignments fpr these users can only be managed by an admin user.
uid required | string (uid) Example: 8d90b808-1e93-11eb-adc1-0242ac120002 |
object (profile) | |
Array of objects | |
Array of objects |
{- "profileInformation": {
- "name": {
- "givenName": "OtherFirstname"
}
}
}
{- "profileInformation": {
- "uid": "65b7a29080f545eb9720f771f054b6e4",
- "name": {
- "givenName": "OtherFirstname",
- "familyName": "Lastname"
}, - "emails": [
- {
- "value": "firstname.lastname@mailinator.com",
- "type": "work",
- "primary": true
}
], - "urn:scim:schemas:extension:iwelcome:1.0": {
- "state": "INACTIVE"
}
}, - "roleAssignments": {
- "adminRoles": [ ],
- "personalRoles": [
- {
- "code": "role-LJxdruuzjERF",
- "name": "Self Service",
- "startDate": "2021-01-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z"
}
], - "accessRoles": [
- {
- "code": "role-JgvpFeGFykyd",
- "name": "Drift - Account Owner",
- "startDate": "2021-04-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z",
- "applications": [
- {
- "code": "drift",
- "name": "Drift",
- "applicationRoles": [
- "Account Owner"
]
}
]
}
]
}, - "structureMemberships": [
- {
- "code": "structure-t04wu2fQbnEk",
- "name": "Structure 1",
- "groupMemberships": [
- {
- "code": "my_code_for_group1",
- "name": "Group 1"
}
]
}
]
}
A user with a RITM Admin role with the appropriate rights has the ability to edit his managed identities. The group and role management options for these users depend on the specific entitlements this admin user has on the affected user. Any user with the appropriate RITM Personal role and attribute entitlements is able to edit their profile. Group memberships and role assignments fpr these users can only be managed by an admin user.
uid required | string (uid) |
object (profile) | |
Array of objects | |
Array of objects |
{- "uid": "8d90b808-1e93-11eb-adc1-0242ac120002",
- "profileInformation": {
- "name": {
- "givenName": "OtherFirstname"
}
}
}
{- "profileInformation": {
- "uid": "65b7a29080f545eb9720f771f054b6e4",
- "name": {
- "givenName": "OtherFirstname",
- "familyName": "Lastname"
}, - "emails": [
- {
- "value": "firstname.lastname@mailinator.com",
- "type": "work",
- "primary": true
}
], - "urn:scim:schemas:extension:iwelcome:1.0": {
- "state": "INACTIVE"
}
}, - "roleAssignments": {
- "adminRoles": [ ],
- "personalRoles": [
- {
- "code": "role-LJxdruuzjERF",
- "name": "Self Service",
- "startDate": "2021-01-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z"
}
], - "accessRoles": [
- {
- "code": "role-JgvpFeGFykyd",
- "name": "Drift - Account Owner",
- "startDate": "2021-04-01T00:00:00.000Z",
- "endDate": "2021-12-31T00:00:00.000Z",
- "applications": [
- {
- "code": "drift",
- "name": "Drift",
- "applicationRoles": [
- "Account Owner"
]
}
]
}
]
}, - "structureMemberships": [
- {
- "code": "structure-t04wu2fQbnEk",
- "name": "Structure 1",
- "groupMemberships": [
- {
- "code": "my_code_for_group1",
- "name": "Group 1"
}
]
}
]
}
A user with a RITM Admin role with the appropriate rights has the ability to send invitations to users. This API can only be used with an access token and the required scope workflow:invitation:admin:post.
email required | string Email-address of the user that is invited |
phone required | string Phone number of the user that is invited |
note | string An optional note to the user that is invited |
language | string Preferred language of the user that is invited |
object (nameSCIM1.1) | |
Array of objects (addressesSCIM1.1) | |
object (iwelcomeExtensionSCIM1.1) | |
object (ritmExtensionSCIM1.1) | |
object (customExtensionSCIM1.1) | |
required | Array of objects |
Array of objects |
{- "email": "firstname.lastname@mailinator.com",
- "phone": "+31612345678",
- "language": "en_GB",
- "note": "You have been invited to join Company",
- "name": {
- "givenName": "Firstname",
- "familyName": "Lastname"
}, - "urn:scim:schemas:extension:iwelcome:1.0": {
- "birthDate": "01/01/1985"
}, - "urn:scim:schemas:extension:custom:1.0": {
- "customAttribute1": "value1",
- "customAttribute2": 12345,
- "customAttribute3": true,
- "customAttribute4": [
- "arrayValue1",
- "arrayValue2"
], - "customAttribute5": {
- "subAttribute1": "subValue1",
- "subAttribute2": 12345,
- "subAttribute3": false
}, - "customAttribute6": [
- {
- "subAttribute1": "subValue1",
- "subAttribute2": 12345,
- "subAttribute3": false
}
]
}, - "structureMemberships": [
- {
- "code": "structure-jgw373i938y3",
- "groupMemberships": [
- {
- "code": "uk"
}
]
}
], - "roleAssignments": [
- {
- "code": "role-673f20jvsklwh",
- "startDate": "2021-01-01T00:00:00.000Z",
- "endDate": "2023-01-01T00:00:00.000Z"
}
]
}
{- "result": {
- "email": "firstname.lastname@mailinator.com",
- "phone": "+31612345678",
- "language": "en_GB",
- "note": "You have been invitated to join Company",
- "name": {
- "givenName": "Firstname",
- "familyName": "Lastname"
}, - "urn:scim:schemas:extension:iwelcome:1.0": {
- "birthDate": "01/01/1985"
}, - "urn:scim:schemas:extension:custom:1.0": {
- "customAttribute1": "value1",
- "customAttribute2": 12345,
- "customAttribute3": true,
- "customAttribute4": [
- "arrayValue1",
- "arrayValue2"
], - "customAttribute5": {
- "subAttribute1": "subValue1",
- "subAttribute2": 12345,
- "subAttribute3": false
}, - "customAttribute6": [
- {
- "subAttribute1": "subValue1",
- "subAttribute2": 12345,
- "subAttribute3": false
}
]
}, - "structureMemberships": [
- {
- "code": "structure-jgw373i938y3",
- "groupMemberships": [
- {
- "code": "uk"
}
]
}
], - "roleAssignments": [
- {
- "code": "role-87398hjhvsn",
- "startDate": "2021-01-01T00:00:00.000Z",
- "endDate": "2023-01-01T00:00:00.000Z",
- "assignedStructureCode": "structure-jgw373i938y3",
- "assignedStructureGroup": "uk"
}
]
}
}
Users with RITM Admin roles and with the correct platform access can create a new 3rd party application.
name required | string The name of the application |
description | string A short description of the application |
protocol | string Default: "NONE" Enum: "NONE" "OAuth/OIDC" "SAML" The protocol if integrated with the IdP |
identifier | string The identifier (ClientID or entityID) as specified at the integrated Identity Provider |
url required | string The url that the user is redirected to in the RITM UI if the application tile is clicked |
applicationRoles | Array of strings |
applicationCategories | Array of strings |
logo | string Base64 encoded picture |
smallLogo | string Base64 encoded picture |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the new application. Can be ACTIVE or INACTIVE. |
{- "name": "Drift",
- "description": "Conversational Marketing platform that combines chat, email, video, and automation to remove the friction from business buying",
- "protocol": "OAuth/OIDC",
- "identifier": "drift",
- "applicationRoles": [
- "Account Owner",
- "Admin",
- "User"
], - "applicationCategories": [
- "thirdpartyappcategory-RGupzjTTQSBl"
], - "logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAA8CAYAAAAjW/WRAAAAjElEQVR42u3TIQEAMAgAsNPxnihkpgEFMPitw6Lz1wNWIQgIAoKAICAICAKCgCAgCAgCCAKCgCAgCAgCgoAgIAgIAoIIAoKAICAICAKCgCAgCAgCggCCgCAgCAgCgoAgIAgIAoKAIIAgIAgIAoKAICAICAKCgCCAICAICAKCgCAgCAgCgoAgIAggCFwMcz2AcT/1oYUAAAAASUVORK5CYII=",
- "smallLogo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF4AAABACAYAAACTDsCFAAAAdElEQVR42u3QIQEAMAgAsNPxnihkpgGaAqgtwqLz1+NciBcvHvHiES8e8eIRLx7x4sWLFy8e8eIRLx7x4hEvHvHixYsXLx7x4hEvHvHiES8e8eLFixcvHvHiES8e8eIRLx7x4sVrEC8e8eIRLx7x4hEvnm0AtTOJAXB2hPAAAAAASUVORK5CYII=",
- "status": "ACTIVE"
}
{- "code": "thirdpartyapp-sKUkb2QhmWLS",
- "name": "Drift",
- "applicationCategories": [
- "thirdpartyappcategory-RGupzjTTQSBl"
], - "protocol": "OAuth/OIDC",
- "identifier": "drift",
- "status": "ACTIVE",
- "description": "Conversational Marketing platform that combines chat, email, video, and automation to remove the friction from business buying",
- "applicationRoles": [
- "Account Owner",
- "Admin",
- "User"
], - "smallLogo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF4AAABACAYAAACTDsCFAAAAdElEQVR42u3QIQEAMAgAsNPxnihkpgGaAqgtwqLz1+NciBcvHvHiES8e8eIRLx7x4sWLFy8e8eIRLx7x4hEvHvHixYsXLx7x4hEvHvHiES8e8eLFixcvHvHiES8e8eIRLx7x4sVrEC8e8eIRLx7x4hEvnm0AtTOJAXB2hPAAAAAASUVORK5CYII=",
- "logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAA8CAYAAAAjW/WRAAAAjElEQVR42u3TIQEAMAgAsNPxnihkpgEFMPitw6Lz1wNWIQgIAoKAICAICAKCgCAgCAgCCAKCgCAgCAgCgoAgIAgIAoIIAoKAICAICAKCgCAgCAgCggCCgCAgCAgCgoAgIAgIAoKAIIAgIAgIAoKAICAICAKCgCCAICAICAKCgCAgCAgCgoAgIAggCFwMcz2AcT/1oYUAAAAASUVORK5CYII="
}
Users with RITM Admin roles and with the correct platform access can search for existing 3rd party applications.
code | string The code of the application. Case-sensitive and exact match. |
name | string The name of the application. Case-sensitive and exact match. |
identifier | boolean The identifier of the application. Case-sensitive and exact match. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "code": "thirdpartyapp-sKUkb2QhmWLS",
- "name": "Drift",
- "applicationCategories": [
- "thirdpartyappcategory-RGupzjTTQSBl"
], - "protocol": "OAuth/OIDC",
- "identifier": "drift",
- "status": "ACTIVE",
- "description": "Conversational Marketing platform that combines chat, email, video, and automation to remove the friction from business buying",
- "applicationRoles": [
- "Account Owner",
- "Admin",
- "User"
], - "smallLogo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF4AAABACAYAAACTDsCFAAAAdElEQVR42u3QIQEAMAgAsNPxnihkpgGaAqgtwqLz1+NciBcvHvHiES8e8eIRLx7x4sWLFy8e8eIRLx7x4hEvHvHixYsXLx7x4hEvHvHiES8e8eLFixcvHvHiES8e8eIRLx7x4sVrEC8e8eIRLx7x4hEvnm0AtTOJAXB2hPAAAAAASUVORK5CYII=",
- "logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAA8CAYAAAAjW/WRAAAAjElEQVR42u3TIQEAMAgAsNPxnihkpgEFMPitw6Lz1wNWIQgIAoKAICAICAKCgCAgCAgCCAKCgCAgCAgCgoAgIAgIAoIIAoKAICAICAKCgCAgCAgCggCCgCAgCAgCgoAgIAgIAoKAIIAgIAgIAoKAICAICAKCgCCAICAICAKCgCAgCAgCgoAgIAggCFwMcz2AcT/1oYUAAAAASUVORK5CYII="
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific existing 3rd party application.
code required | string Example: thirdpartyapp-sKUkb2QhmWLS The code of the application. |
{- "code": "thirdpartyapp-sKUkb2QhmWLS",
- "name": "Drift",
- "applicationCategories": [
- "thirdpartyappcategory-RGupzjTTQSBl"
], - "protocol": "OAuth/OIDC",
- "identifier": "drift",
- "status": "ACTIVE",
- "description": "Conversational Marketing platform that combines chat, email, video, and automation to remove the friction from business buying",
- "applicationRoles": [
- "Account Owner",
- "Admin",
- "User"
], - "smallLogo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF4AAABACAYAAACTDsCFAAAAdElEQVR42u3QIQEAMAgAsNPxnihkpgGaAqgtwqLz1+NciBcvHvHiES8e8eIRLx7x4sWLFy8e8eIRLx7x4hEvHvHixYsXLx7x4hEvHvHiES8e8eLFixcvHvHiES8e8eIRLx7x4sVrEC8e8eIRLx7x4hEvnm0AtTOJAXB2hPAAAAAASUVORK5CYII=",
- "logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAA8CAYAAAAjW/WRAAAAjElEQVR42u3TIQEAMAgAsNPxnihkpgEFMPitw6Lz1wNWIQgIAoKAICAICAKCgCAgCAgCCAKCgCAgCAgCgoAgIAgIAoIIAoKAICAICAKCgCAgCAgCggCCgCAgCAgCgoAgIAgIAoKAIIAgIAgIAoKAICAICAKCgCCAICAICAKCgCAgCAgCgoAgIAggCFwMcz2AcT/1oYUAAAAASUVORK5CYII="
}
Users with RITM Admin roles and with the correct platform access can update a specific existing 3rd party application.
code required | string Example: thirdpartyapp-sKUkb2QhmWLS The code of the application. |
name | string The name of the application |
description | string A short description of the application |
protocol | string Default: "NONE" Enum: "NONE" "OAuth/OIDC" "SAML" The protocol if integrated with the IdP |
identifier | string The identifier (ClientID or entityID) as specified at the integrated Identity Provider. Mandatory if protocol is not "NONE" |
url | string The url that the user is redirected to in the RITM UI if the application tile is clicked |
applicationRoles | Array of strings |
applicationCategories | Array of strings |
logo | string Base64 encoded picture |
smallLogo | string Base64 encoded picture |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the new application. Can be ACTIVE or INACTIVE. |
{- "name": "Drift V2"
}
{- "code": "thirdpartyapp-sKUkb2QhmWLS",
- "name": "Drift V2",
- "applicationCategories": [
- "thirdpartyappcategory-RGupzjTTQSBl"
], - "protocol": "SAML",
- "identifier": "drifsaml",
- "status": "ACTIVE",
- "description": "Conversational Marketing platform that combines chat, email, video, and automation to remove the friction from business buying",
- "applicationRoles": [
- "Writer",
- "Reader"
], - "smallLogo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF4AAABACAYAAACTDsCFAAAAdElEQVR42u3QIQEAMAgAsNPxnihkpgGaAqgtwqLz1+NciBcvHvHiES8e8eIRLx7x4sWLFy8e8eIRLx7x4hEvHvHixYsXLx7x4hEvHvHiES8e8eLFixcvHvHiES8e8eIRLx7x4sVrEC8e8eIRLx7x4hEvnm0AtTOJAXB2hPAAAAAASUVORK5CYII=",
- "logo": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAA8CAYAAAAjW/WRAAAAjElEQVR42u3TIQEAMAgAsNPxnihkpgEFMPitw6Lz1wNWIQgIAoKAICAICAKCgCAgCAgCCAKCgCAgCAgCgoAgIAgIAoIIAoKAICAICAKCgCAgCAgCggCCgCAgCAgCgoAgIAgIAoKAIIAgIAgIAoKAICAICAKCgCCAICAICAKCgCAgCAgCgoAgIAggCFwMcz2AcT/1oYUAAAAASUVORK5CYII="
}
Users with RITM Admin roles and with the correct platform access can delete a specific existing 3rd party application.
code required | string Example: thirdpartyapp-sKUkb2QhmWLS The code of the application. |
{ }
Users with RITM Admin roles and with the correct platform access can create a new application category using this API.
name required | string The name of the application category |
description | string A short description of the application category |
visible | boolean Default: true If the application category should be shown on the self-service pages of users |
{- "name": "Marketing & Sales",
- "description": "All marketing and sales related applications",
- "visible": true
}
{- "code": "thirdpartyappcategory-63x3P26TZKj2",
- "name": "Marketing & Sales",
- "description": "All marketing and sales related applications",
- "visible": true
}
Users with RITM Admin roles and with the correct platform access can retrieve application categories using this API. The search parameters are AND-ed.
code | string The code of the application category. Case-sensitive and exact match. |
name | string The name of the application category. Case-sensitive and exact match. |
visible | boolean If the application category is shown on the self-services pages. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "code": "thirdpartyappcategory-63x3P26TZKj2",
- "name": "Marketing & Sales",
- "description": "All marketing and sales related applications",
- "visible": true
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific application category.
code required | string Example: thirdpartyappcategory-63x3P26TZKj2 The code of the application category. |
{- "code": "thirdpartyappcategory-63x3P26TZKj2",
- "name": "Marketing & Sales",
- "description": "All marketing and sales related applications",
- "visible": true
}
Users with RITM Admin roles and with the correct platform access can update a specific application category.
code required | string Example: thirdpartyappcategory-63x3P26TZKj2 The code of the application category. |
name | string The name of the application category |
description | string A short description of the application category |
visible | boolean If the application category should be shown on the self-service pages of users |
{- "name": "Sales & Marketing"
}
{- "code": "thirdpartyappcategory-63x3P26TZKj2",
- "name": "Marketing & Sales",
- "description": "All marketing and sales related applications",
- "visible": true
}
Users with RITM Admin roles and with the correct platform access can delete a specific application category.
code required | string Example: thirdpartyappcategory-63x3P26TZKj2 The code of the application category. |
{ }
Users with RITM Admin roles and with the correct platform access can create a new resource type using this API.
name required | string The name of the resource type |
description | string A short description of the resource type |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the new resource type. Can be ACTIVE or INACTIVE. |
{- "name": "Resource type 1",
- "description": "A description for resource type 1",
- "status": "ACTIVE"
}
{- "code": "resourcestype-jdTYKbEPTmZO",
- "name": "Resource type 1",
- "description": "A description for resource type 1",
- "status": "ACTIVE"
}
Users with RITM Admin roles and with the correct platform access can retrieve resource types using this API.
code | string The code of the resource type. Case-sensitive and exact match. |
name | string The name of the resource type. Case-sensitive and exact match. |
status | string Enum: "ACTIVE" "INACTIVE" Example: status=INACTIVE The status of the resource type. Case-insensitive and partial match. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "code": "resourcestype-jdTYKbEPTmZO",
- "name": "Resource type 1",
- "description": "A description for resource type 1",
- "status": "ACTIVE"
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific resource type using this API.
code required | string Example: resourcestype-jdTYKbEPTmZO The code of the resource type. |
{- "code": "resourcestype-jdTYKbEPTmZO",
- "name": "Resource type 1",
- "description": "A description for resource type 1",
- "status": "ACTIVE"
}
Users with RITM Admin roles and with the correct platform access can update a specific resource type using this API.
code required | string Example: resourcestype-jdTYKbEPTmZO The code of the resource type. |
name | string The name of the resource type |
description | string A short description of the resource type |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the resource type. Can be ACTIVE or INACTIVE. |
{- "name": "New name for resource type 1"
}
{- "code": "resourcestype-jdTYKbEPTmZO",
- "name": "New name for resource type 1",
- "description": "A description for resource type 1",
- "status": "ACTIVE"
}
Users with RITM Admin roles and with the correct platform access can delete a specific resource type using this API.
code required | string Example: resourcestype-jdTYKbEPTmZO The code of the resource type. |
{ }
Users with RITM Admin roles and with the correct platform access can create a new resource using this API.
name required | string The name of the resource |
description | string A short description of the resource |
identifier | string An internal customer identifier |
privileges | Array of strings |
resourceTypes | Array of strings |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the new resource. Can be ACTIVE or INACTIVE. |
{- "name": "Resource 1",
- "description": "A description for resource 1",
- "identifier": "ID12345678",
- "privileges": [
- "verify",
- "change"
], - "resourceTypes": [
- "resourcestype-UOoPGYOaHzkR"
], - "status": "ACTIVE"
}
{- "code": "resources-phyC7DOOteRG",
- "name": "Resource 1",
- "description": "A description for resource 1",
- "identifier": "ID12345678",
- "privileges": [
- "verify",
- "change"
], - "resourceTypes": [
- "resourcestype-UOoPGYOaHzkR"
], - "status": "ACTIVE"
}
Users with RITM Admin roles and with the correct platform access can retrieve resource using this API.
code | string The code of the resource. Case-sensitive and exact match. |
name | string The name of the resource. Case-sensitive and exact match. |
identifier | string The identifier of the resource. Case-insensitive and exact match. |
status | string Enum: "ACTIVE" "INACTIVE" Example: status=INACTIVE The status of the resource. Case-sensitive and exact match. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "code": "resources-phyC7DOOteRG",
- "name": "Resource 1",
- "description": "A description for resource 1",
- "identifier": "ID12345678",
- "privileges": [
- "verify",
- "change"
], - "resourceTypes": [
- "resourcestype-UOoPGYOaHzkR"
], - "status": "ACTIVE"
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific resource using this API.
code required | string Example: resources-phyC7DOOteRG The code of the resource. |
{- "code": "resources-phyC7DOOteRG",
- "name": "Resource 1",
- "description": "A description for resource 1",
- "identifier": "ID12345678",
- "privileges": [
- "verify",
- "change"
], - "resourceTypes": [
- "resourcestype-UOoPGYOaHzkR"
], - "status": "ACTIVE"
}
Users with RITM Admin roles and with the correct platform access can update a specific resource using this API.
code required | string Example: resources-phyC7DOOteRG The code of the resource. |
name | string The name of the resource |
description | string A short description of the resource |
identifier | string An internal customer identifier |
privileges | Array of strings |
resourceTypes | Array of strings |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the resource. Can be ACTIVE or INACTIVE. |
{- "identifier": "ID87654321"
}
{- "code": "resources-phyC7DOOteRG",
- "name": "Resource 1",
- "description": "A description for resource 1",
- "identifier": "ID12345678",
- "privileges": [
- "verify",
- "change"
], - "resourceTypes": [
- "resourcestype-UOoPGYOaHzkR"
], - "status": "ACTIVE"
}
Users with RITM Admin roles and with the correct platform access can delete a specific resource using this API.
code required | string Example: resources-phyC7DOOteRG The code of the resource. |
{ }
Users with RITM Admin roles and with the correct platform access can create a new access role using this API.
name required | string The name of the access role |
description | string A short description of the access role |
status required | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the new access role. Can be ACTIVE or INACTIVE. |
Array of objects Array of code/value combinations | |
Array of objects Array of 3rd party application and potentially application roles | |
Array of objects Array of resources and potentially privileges |
{- "name": "Drift - Admin",
- "description": "An admin has access to everything in Drift.",
- "status": "ACTIVE",
- "customAttributes": [
- {
- "code": "appIdentifier",
- "value": "12345678"
}, - {
- "code": "appLicense",
- "value": "Commercial"
}
], - "applications": [
- {
- "applicationCode": "thirdpartyapp-BayOJOgTTQCM",
- "applicationRoles": [
- "Admin"
]
}
], - "resources": [
- {
- "resourceCode": "resources-phyC7DOOteRG",
- "privileges": [
- "read"
]
}
]
}
{- "code": "role-TNtOQ4fB6aq6",
- "name": "Drift - Admin",
- "type": "ACCESS",
- "status": "ACTIVE",
- "description": "An admin has access to everything in Drift.",
- "customAttributes": [
- {
- "code": "appIdentifier",
- "value": "12345678"
}, - {
- "code": "appLicense",
- "value": "Commercial"
}
], - "applications": [
- {
- "applicationCode": "thirdpartyapp-BayOJOgTTQCM",
- "applicationName": "Drift",
- "applicationRoles": [
- "Admin"
]
}
], - "resources": [
- {
- "resourceCode": "resources-phyC7DOOteRG",
- "privileges": [
- "read"
]
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve access roles using this API. The search parameters are AND-ed.
code | string The code of the access role. Case-sensitive and exact match. |
name | string The name of the access role. By default, case-insensitive and partial match (see nameMatch parameter to overwrite). |
nameMatch | string Default: "PARTIAL" Enum: "EXACT" "PARTIAL" Example: nameMatch=EXACT The way that searches are done. PARTIAL is the default and will use a case-insensitive and partial search. EXACT will use an exact, case-sensitive, search. |
status | string Enum: "ACTIVE" "INACTIVE" Example: status=INACTIVE The status of the access role. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "code": "role-TNtOQ4fB6aq6",
- "name": "Drift - Admin",
- "description": "An admin has access to everything in Drift. The Account Owner is by default an Admin.",
- "applications": [
- {
- "applicationCode": "thirdpartyapp-BayOJOgTTQCM",
- "applicationName": "Drift",
- "applicationRoles": [
- "Admin"
]
}
], - "status": "ACTIVE",
- "customAttributes": [ ],
- "resources": [ ],
- "type": "ACCESS"
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific access role.
code required | string Example: role-TNtOQ4fB6aq6 The code of the access role. |
{- "code": "role-TNtOQ4fB6aq6",
- "name": "Drift - Admin",
- "description": "An admin has access to everything in Drift. The Account Owner is by default an Admin.",
- "applications": [
- {
- "applicationCode": "thirdpartyapp-BayOJOgTTQCM",
- "applicationName": "Drift",
- "applicationRoles": [
- "Admin"
]
}
], - "status": "ACTIVE",
- "customAttributes": [ ],
- "resources": [ ],
- "type": "ACCESS"
}
Users with RITM Admin roles and with the correct platform access can update a specific access role.
code required | string Example: role-TNtOQ4fB6aq6 The code of the access role. |
name | string The name of the access role |
description | string A short description of the access role |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" The status of the access role. Can be ACTIVE or INACTIVE. |
Array of objects Array of code/value combinations | |
Array of objects Array of 3rd party application and potentially application roles | |
Array of objects Array of resources and potentially privileges |
{- "name": "Drift - Full admin access"
}
{- "code": "role-TNtOQ4fB6aq6",
- "name": "Drift - Full admin access",
- "description": "An admin has access to everything in Drift. The Account Owner is by default an Admin.",
- "applications": [
- {
- "applicationCode": "thirdpartyapp-BayOJOgTTQCM",
- "applicationName": "Drift",
- "applicationRoles": [
- "Admin"
]
}
], - "status": "ACTIVE",
- "customAttributes": [ ],
- "resources": [
- {
- "resourceCode": "resources-phyC7DOOteRG",
- "privileges": [
- "read"
]
}
], - "type": "ACCESS"
}
Users with RITM Admin roles and with the correct platform access can delete a specific access role.
code required | string Example: role-TNtOQ4fB6aq6 The code of the access role. |
{ }
Users with RITM Admin roles and with the correct platform access can create a new structure using this API.
name required | string The name of the structure. |
description | string A short description of the structure, of maximum 250 characters. |
isNested required | boolean Determines whether the groups configured within the structure can be configured in a flat layout, or in a branching one. |
structureType | string Default: "STATIC" Value: "STATIC" The type corresponding to the structure being created. |
hasCustomAttributes | boolean Indicates whether custom attributes will be used for the groups in the structure. |
Array of objects Array of code/name combinations | |
hasRolesPerGroup | boolean Indicates whether roles per group will be used for the groups in the structure. |
status required | string Enum: "ACTIVE" "INACTIVE" The status of the new structure. Can be active or inactive. |
Array of objects The groups within the structure. |
{- "name": "Organisational Chart",
- "description": "Lorem ipsum dolor sit a met",
- "isNested": false,
- "status": "ACTIVE",
- "structureType": "STATIC",
- "hasCustomAttributes": true,
- "attributes": [
- {
- "code": "vatNumber",
- "name": "VAT Number"
}
], - "hasRolesPerGroup": true,
- "structureGroups": [
- {
- "name": "Marketing",
- "code": "marketing",
- "attributes": {
- "vatNumber": 63826382
}, - "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
]
}
{- "configuration": {
- "isNested": false,
- "structureType": "STATIC"
}, - "code": "structure-1234567891011",
- "name": "Organisational Chart",
- "description": "Lorem ipsum dolor sit a met",
- "status": "ACTIVE",
- "hasCustomAttributes": true,
- "attributes": [
- {
- "code": "vatNumber",
- "name": "VAT Number"
}
], - "hasRolesPerGroup": true,
- "structureItems": [
- {
- "name": "Marketing",
- "code": "marketing",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [ ],
- "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
], - "createdBy": "8d90b808-1e93-11eb-adc1-0242ac120002"
}
Users with RITM Admin roles and with the correct platform access can retrieve structures using this API. The search parameters are AND-ed.
name | string Example: name=Organisational chart The name of the structure. Case-insensitive and partial match. |
code | string Example: code=structure-1234567891011 The code corresponding to the structure being retrieved. Exact match. |
description | string Example: description=This structure contains the organisation's employees, grouped by job title. A short description of the structure, of maximum 250 characters. Case-insensitive and partial match. |
status | string Default: "ACTIVE" Enum: "ACTIVE" "INACTIVE" Example: status=ACTIVE The status of the new structure. Can be active or inactive. Case-insensitive and exact match. |
isNested | boolean Example: isNested=false isNested determines whether the groups configured within the structure can be configured in a flat layout, or in a branching one. |
showInactive | boolean Example: showInactive=true If set to true also shows INACTIVE structures if status is not passed |
showGroupAttributes | boolean Default: true Example: showGroupAttributes=true showGroupAttributes is an optional filter to be able to specify if custom group attributes should also be included in the response or not. By default it is set to true. |
showGroupRoles | boolean Default: true Example: showGroupRoles=true showGroupRoles is an optional filter to be able to specify if group roles should also be included in the response or not. By default it is set to true. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 1,
- "limit": 10,
- "page": 1,
- "pageCount": 1,
- "result": [
- {
- "configuration": {
- "isNested": false,
- "structureType": "STATIC"
}, - "code": "structure-1234567891011",
- "name": "Organisational Chart",
- "description": "Lorem ipsum dolor sit a met",
- "status": "ACTIVE",
- "hasCustomAttributes": true,
- "attributes": [
- {
- "code": "vatNumber",
- "name": "VAT Number"
}
], - "hasRolesPerGroup": true,
- "structureGroups": [
- {
- "children": [ ],
- "name": "Marketing",
- "code": "marketing",
- "attributes": {
- "vatNumber": 63826382
}, - "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
], - "createdBy": "8d90b808-1e93-11eb-adc1-0242ac120002"
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific structure by code.
code required | string Example: structure-1234567891011 |
showGroupAttributes | boolean Default: true Example: showGroupAttributes=false showGroupAttributes is an optional filter to be able to specify if custom group attributes should also be included in the response or not. By default it is set to true. |
showGroupRoles | boolean Default: true Example: showGroupRoles=true showGroupRoles is an optional filter to be able to specify if group roles should also be included in the response or not. By default it is set to true. |
{- "configuration": {
- "isNested": false,
- "structureType": "STATIC"
}, - "code": "structure-1234567891011",
- "name": "Organisational Chart one",
- "description": "description for Organisational",
- "status": "ACTIVE",
- "hasCustomAttributes": true,
- "hasRolesPerGroup": true,
- "attributes": [
- {
- "code": "vatNumber",
- "name": "VAT Number"
}
], - "structureGroups": [
- {
- "code": "marketing",
- "name": "Marketing",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [ ],
- "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
], - "createdBy": "8d90b808-1e93-11eb-adc1-0242ac120002"
}
Users with RITM Admin roles and with the correct platform access can update a specific structure by code.
code required | string Example: structure-1234567891011 |
name required | string The name of the structure. |
description | string A short description of the structure, of maximum 250 characters. |
isNested required | boolean Determines whether the groups configured within the structure can be configured in a flat layout, or in a branching one. |
structureType | string Default: "STATIC" Value: "STATIC" The type corresponding to the structure being created. |
hasCustomAttributes | boolean Indicates whether custom attributes will be used for the groups in the structure. |
Array of objects Array of code/name combinations | |
hasRolesPerGroup | boolean Indicates whether roles per group will be used for the groups in the structure. |
status required | string Enum: "ACTIVE" "INACTIVE" The status of the new structure. Can be active or inactive. |
Array of objects The groups within the structure. |
{- "name": "Organisational Chart one",
- "description": "description for Organisational",
- "status": "ACTIVE",
- "hasCustomAttributes": true,
- "attributes": [
- {
- "code": "vatNumber",
- "name": "VAT Number"
}
], - "hasRolesPerGroup": true,
- "structureGroups": [
- {
- "code": "marketing",
- "name": "Marketing",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [ ],
- "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
]
}
{- "configuration": {
- "isNested": false,
- "structureType": "STATIC"
}, - "code": "structure-1234567891011",
- "name": "Organisational Chart one",
- "description": "description for Organisational",
- "status": "ACTIVE",
- "hasCustomAttributes": true,
- "attributes": [
- {
- "code": "vatNumber",
- "name": "VAT Number"
}
], - "hasRolesPerGroup": true,
- "structureGroups": [
- {
- "code": "marketing",
- "name": "Marketing",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [ ],
- "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
], - "createdBy": "8d90b808-1e93-11eb-adc1-0242ac120002"
}
Users with RITM Admin roles and with the correct platform access can create a new group using this API.
code required | string The code corresponding to the group being created. |
name required | string The name of the group. |
structureCode required | string The code corresponding to the structure that the group belongs to. |
groupParent | string If there is a parent, the code of the parent group. |
object | |
Array of objects |
{- "code": "test4",
- "name": "name for test 4",
- "structureCode": "structure-1234567891011",
- "groupParent": "test3",
- "attributes": {
- "vatNumber": 63826383
}, - "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
{- "configuration": {
- "isNested": true,
- "structureType": "STATIC"
}, - "code": "structure-1234567891011",
- "name": "home",
- "description": "test description",
- "status": "ACTIVE",
- "hasCustomAttributes": true,
- "hasRolesPerGroup": true,
- "structureGroups": [
- {
- "name": "name for test 3",
- "code": "test3",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [
- {
- "name": "name for test 4",
- "code": "test4",
- "attributes": {
- "vatNumber": 63826383
}, - "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
]
}
], - "createdBy": "8d90b808-1e93-11eb-adc1-0242ac120002"
}
Users with RITM Admin roles and with the correct platform access can retrieve groups using this API.
name | string Example: name=Organisational chart The name of the group. Case-sensitive and exact match. |
code | string Example: code=group-1234567891011 The code corresponding to the group being retrieved. Case-sensitive and exact match. |
structureCode required | string Example: structureCode=structure-1234567891011 The code corresponding to the structure that the group belongs to. Case-sensitive and exact match. |
groupParent | string Example: groupParent=group-26382930263820 If the case, code of the parent group. Case-sensitive and exact match. |
limit | integer Default: 10 The number of items to return per page. Zero (0) means the highest allowed limit (currently not restricted) |
page | integer Default: 1 This is the page number for a paginated response (where typically the number of pages is the total amount of items divided by the limit parameter) |
{- "totalItems": 79,
- "limit": 10,
- "page": 1,
- "pageCount": 8,
- "result": [
- {
- "code": "test11",
- "name": "test11",
- "attributes": {
- "vatNumber": 6383982
}, - "children": [
- {
- "children": [ ],
- "code": "test21",
- "name": "test21",
- "attributes": {
- "vatNumber": 63826382
}, - "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
]
}, - {
- "code": "test01",
- "name": "test01",
- "children": [ ]
}, - {
- "code": "test02",
- "name": "group test 21",
- "attributes": {
- "vatNumber": 1425361
}, - "children": [ ]
}, - {
- "code": "test03",
- "name": "group test 31",
- "attributes": {
- "vatNumber": 62839263
}, - "children": [ ]
}
]
}
Users with RITM Admin roles and with the correct platform access can retrieve a specific group by code.
code required | string Example: group-1234567891011 |
structureCode required | string Example: structureCode=structure-1234567891011 |
{- "code": "test12",
- "name": "test12",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [ ],
- "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
Users with RITM Admin roles and with the correct platform access can update a specific group by code.
code required | string Example: group-1234567891011 |
moveTo | string Example: moveTo=group-1234567891011 moveTo is an optional filter that allows you to move a group to another parent group, in static, nested structures. Cannot be used in combination with the moveToLevel1 parameter. |
moveToLevel1 | boolean Example: moveToLevel1=true moveToLevel1 is an optional filter that allows you to move a group to level 1, in static, nested structures. Cannot be used in combination with the moveTo parameter. |
name | string The new name of the group. |
structureCode required | string The code corresponding to the structure that the group belongs to. |
groupParent | string If there is a parent, the code of the parent group. |
object | |
Array of objects |
{- "name": "new name for group",
- "structureCode": "structure-1234567891011",
- "groupParent": "test3",
- "attributes": {
- "vatNumber": 63826382
}, - "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
{- "name": "new name for group",
- "code": "group-1234567891011",
- "attributes": {
- "vatNumber": 63826382
}, - "children": [ ],
- "roles": [
- {
- "code": "role-673f20jvsklwh",
- "type": "ACCESS"
}, - {
- "code": "role-63nso3bs9ln",
- "type": "ADMIN"
}
]
}
Users with RITM Admin roles and with the correct platform access can delete a specific group by code.
code required | string Example: group-1234567891011 |
structureCode required | string Example: structureCode=structure-1234567891011 |
{ }