REST API: delegation Resource

From AgileApps Support Wiki
Revision as of 09:37, 14 August 2018 by imported>Aeric

Performs actions related to delegating your own profile and those of your direct reports to a proxy user. A proxy user should be able to perform the same activities as his or her supervisor depending on the role(s) delegated to him or her.

Access Permissions

Notepad.png

Note: Users should have the Manage Delegations permissions.

Add a User for Delegation

Allows you to add users to the Delegated users list.

Method
POST
URI
https://{yourDomain}/networking/rest/delegation/
Request
	<platform>
		<delegation>
			<active>false</active>
			<applicationId>08455b174ee14b26859c44c60f2ceb7b</applicationId>
			<createdId>
				<content>b2c6fb3b59ba4f9a9c212f20be284df5</content>
				<displayValue>Fix Fix2</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/b2c6fb3b59ba4f9a9c212f20be284df5</uri>
			</createdId>
			<dateCreated>2018-07-26T00:46:41.000Z</dateCreated>
			<dateModified>2018-07-26T06:09:09.000Z</dateModified>
			<delegateAccessProfile>false</delegateAccessProfile>
			<delegatee>
				<content>b2c6fb3b59ba4f9a9c212f20be284df5</content>
				<displayValue>Fix Fix2</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/b2c6fb3b59ba4f9a9c212f20be284df5</uri>
			</delegatee>
			<id>ee35804e4c2942b999d8b5521e786fd7</id>
			<modifiedId>
				<content>b2c6fb3b59ba4f9a9c212f20be284df5</content>
				<displayValue>Fix Fix2</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/b2c6fb3b59ba4f9a9c212f20be284df5</uri>
			</modifiedId>
			<prinicpalUser>
				<content>792a8e8725104cb58e5d337ea730f59b</content>
				<displayValue>Fit fit</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/792a8e8725104cb58e5d337ea730f59b</uri>
			</prinicpalUser>
			<roleId>
				<content>18d2099643e64deab4a174dc113a5174</content>
				<displayValue>Agent</displayValue>
				<type>ROLE</type>
				<uri>https://localhost/networking/rest/role/18d2099643e64deab4a174dc113a5174</uri>
			</roleId>
			<roleId>
				<content>c7b03526a90c44cdbbfdaa4e5564c6a9</content>
				<displayValue>Manager</displayValue>
				<type>ROLE</type>
				<uri>https://localhost/networking/rest/role/c7b03526a90c44cdbbfdaa4e5564c6a9</uri>
			</roleId>
		</delegation>
	</platform>
Response
	<platform>
		<message>
			<code>0</code>
			<description>Success</description>
			<id>&lt;delegationId&gt;</id>
		</message>
	</platform>
See also: REST API:Error Codes

Retrieve the Delegated Users list

Retrieves the list of delegated users.

Method
GET
URI
https://{yourDomain}/networking/rest/delegation/<delegationId>
Response
	<platform>
		<delegation>
			<active>false</active>
			<applicationId>08455b174ee14b26859c44c60f2ceb7b</applicationId>
			<createdId>
				<content>b2c6fb3b59ba4f9a9c212f20be284df5</content>
				<displayValue>Fix Fix2</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/b2c6fb3b59ba4f9a9c212f20be284df5</uri>
			</createdId>
			<dateCreated>2018-07-26T00:46:41.000Z</dateCreated>
			<dateModified>2018-07-26T06:09:09.000Z</dateModified>
			<delegateAccessProfile>false</delegateAccessProfile>
			<delegatee>
				<content>b2c6fb3b59ba4f9a9c212f20be284df5</content>
				<displayValue>Fix Fix2</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/b2c6fb3b59ba4f9a9c212f20be284df5</uri>
			</delegatee>
			<id>ee35804e4c2942b999d8b5521e786fd7</id>
			<modifiedId>
				<content>b2c6fb3b59ba4f9a9c212f20be284df5</content>
				<displayValue>Fix Fix2</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/b2c6fb3b59ba4f9a9c212f20be284df5</uri>
			</modifiedId>
			<prinicpalUser>
				<content>792a8e8725104cb58e5d337ea730f59b</content>
				<displayValue>Fit fit</displayValue>
				<type>USER</type>
				<uri>https://localhost/networking/rest/user/792a8e8725104cb58e5d337ea730f59b</uri>
			</prinicpalUser>
			<roleId>
				<content>18d2099643e64deab4a174dc113a5174</content>
				<displayValue>Agent</displayValue>
				<type>ROLE</type>
				<uri>https://localhost/networking/rest/role/18d2099643e64deab4a174dc113a5174</uri>
			</roleId>
			<roleId>
				<content>c7b03526a90c44cdbbfdaa4e5564c6a9</content>
				<displayValue>Manager</displayValue>
				<type>ROLE</type>
				<uri>https://localhost/networking/rest/role/c7b03526a90c44cdbbfdaa4e5564c6a9</uri>
			</roleId>
		</delegation>
		<message>
			<code>0</code>
			<description>Success</description>
		</message>
	</platform>
See also: REST API:Error Codes

Update the List of Delegated Users

Allows you to update the list of delegated users.

Method
PUT
URI
https://{yourDomain}/networking/rest/delegation/<delegationId>
Response
	<platform>
		<message>
			<code>0</code>
			<description>Success</description>
			<id>&lt;delegationId&gt;</id>
		</message>
	</platform>
See also: REST API:Error Codes


Delete a Delegated User

Allows you to delete a delegated user.

Method
DELETE
URI
https://{yourDomain}/networking/rest/delegation/<delegationId>
Response
	<platform>
		<message>
			<code>0</code>
			<description>Success</description>
		</message>
	</platform>
See also: REST API:Error Codes

Fields

Notes:
  • In this object, Boolean fields accept either 1/0 or TRUE/FALSE
  • Because there are so many fields, and so many of them can be empty, empty fields generally are not returned as part of user data. However, they can still be specified for an update.
Name Type Description Additional Information
application String application identifier
uri attribute A link to the application Use the link in a browser to go to the application
displayValue attribute Name displayed in the GUI
type String User type. For example, platform user or site user
dateModified Date Date the delegation role is applied
delegateAccessProfile Boolean Allows you to manage the delegation when set to TRUE.
delegatee String User receiving the delegation from a Principal User.
principalUser String User delegating the profile to a Delegate User
principalUser String User delegating the profile to a Delegate User