Get Delegation

API Type

REST

HTTP Method

GET

Description

Retrieves a delegation instance using the delegation ID.

URL Format (OnPremises, Private Cloud)

https://[domain]:[port]/AgilePointServer/Admin/GetDelegation/[delegationID]

URL Format (OnDemand)

https://[domain]:[port]/AgilePointService/Admin/GetDelegation/[delegationID]

Request Parameters

NameDescription

delegationID

Function:
The unique ID of a delegation object.
Type
string
Accepted Values:
A valid delegation ID.

JavaScript Code Example

$("#btnGetDelegation").click(function () {
  
  $.ajax({
    url: "https://mydomain:9011/AgilePointServer/Admin/
                GetDelegation/E83A0F99EDB74FF7A048C01F1C5A32A7",
    type: "GET"
  });
  
});

Java Code Example

public String GetDelegation() {

  String URI = "https://mydomain:9011/AgilePointServer/Admin/
                        GetDelegation/E83A0F99EDB74FF7A048C01F1C5A32A7";

  HTTPOperations ops = new HTTPOperations(domain, userName, 
                       password, appID, locale);

  return ops.GETMethod(URI);
}

C# Code Example

public string GetDelegation()
  {
    string URI = "https://mydomain:9011/AgilePointServer/Admin/
                         GetDelegation/E83A0F99EDB74FF7A048C01F1C5A32A7";

    HTTPOperations ops = new HTTPOperations(domain, this.userName, 
                         password, appID, locale);

    return ops.GetData(URI);
  }

cURL Code Example

Note: The authorization code is an example. You must generate your own authorization code in base64 encoded format with the syntax Domain\Username:Password.
curl -H "Authorization:Basic QVAtNDI0XEFkbWluOnBhc3M=" 
                         https://mydomain:9011/AgilePointServer/Admin/
                         GetDelegation/827128D244B4F4D9117766B9FF2BA912

Output

WFDelegation object that specifies the user whose tasks will be delegated and the designated user to whom to delegate tasks.

JSON Response Body Example

{
  "CancelledBy": null,
  "CancelledDate": "\/Date(928149600000+0000)\/",
  "CreatedBy": "mydomain\\brian.lucas",
  "CreatedDate": "\/Date(1394154711507+0000)\/",
  "DelegationID": "77F9A9946CF74545B4C8A27956CDA036",
  "Description": "Rest Test",
  "EndDate": "\/Date(28799000+0000)\/",
  "FromUser": "mydomain\\brian.lucas",
  "LastUpdatedBy": null,
  "LastUpdatedDate": "\/Date(928149600000+0000)\/",
  "ProcDefIDS": "",
  "RecWeekdaysString": "",
  "StartDate": "\/Date(-57600000+0000)\/",
  "Status": "Created",
  "ToUser": "mydomain\\lilly.allen"
}

Supported Versions

AgilePoint v5.0 R2 and higher

Code Examples in the AgilePoint NX Documentation

The AgilePoint NX Product Documentation is intended as a basic reference to help you understand how to complete basic coding tasks, such as make API or JavaScript method calls. Code examples that show specific use cases, the solutions to specific business problems, or detailed implementation scenarios are outside the scope of the AgilePoint NX Product Documentation. For specific and/or advanced types of examples that may better meet your requirements, AgilePoint provides several resources:

  • AgilePoint Community Forums - A free, AgilePoint-moderated, crowd-sourcing user forum where you can ask questions about specific techniques, the solutions to use cases, workarounds, or other topics that may not be covered in the Product Documentation.
  • Professional Services - If you can not find the information you need for your specific business problem, mentoring is available through AgilePoint Professional Services.
  • Personalized Training - AgilePoint can provide personalized training for your organization. To request personalized training, contact AgilePoint Sales.