Completing Assignments Using API
  • 25 Apr 2022
  • 2 Minutes to read
  • Dark
    Light

Completing Assignments Using API

  • Dark
    Light

Article Summary

Overview

Through use of the ability to Call Internal Services using API Calls, and specifically the Assignment Service, users can update, modify, or add information to an Assignment through the use of API.

The following article and example demonstrates how to use the Process Form Assignment Response service as to create an Assignment, get the Assignment ID, and gather Integration Details to complete the Assignment via Postman.  


Setup Assignment

To set up the Assignment: 

  1. From the Flow Designer, connect an Add Task step to the Start step, then configure the desired Assign To, Assignment Name, and Assignment Action Name values. Then select PICK OR CREATE FORM, and configure the Assigned Form. 
    Considerations
    The example Assignment utilizean empty Approval Form; note that this Form could be any other Form depending on the desired use case.

    It is best practice to dynamically provide values for the Assignment Name and Assignment ActionName with Merge Plain Text mappings.

  2. From the Properties tab of the Add Task step, select ASSIGNMENT SETUP > EDIT. Then, locate Additional Assignment Actions > Action Definitions, and click ADD. 

  3. In the Add Action Definitions window, uncheck Can Respond Via Email and select NotAllow from the Allow Files dropdown. Then, under DATA > Outcome Name, input "Approved" and click OK. 

  4. Back in the Assignment Setup window, define a Denied action by repeating the previous steps used to configure the Approved action, then click DONE. 
  5. Connect both outcomes of the Add Task step to the End step. Then, Save and close the Flow. 


Integration Details

  1. In the DecisionsStudio, navigate to System > Administration > Features > All Services. Then, locate and right-click Assignment and select View Integration Details
  2. In the Assignment window, find and select ProcessFormAssignmentResponse from the MethodName list. 
  3. In the ProcessFormAssignmentResponse window, set up the Integration Details by selecting the desired Credentials and leaving the rest of the values default. 
  4. From the INFO tab, copy the Using POST URL and Parameter(s)text.
    Storing Information
    If Specify Session ID or Specify User Credentials are in use, be sure to click STORE SESSION ID or STORE CREDENTIALS, to update the Parameters before copying over any of the INFO tab contents. 

Setup Postman

  1. Open Postman and add a new POST Request.
  2. Paste the URL in the URL box. 
  3. Format and paste the following code into the Body:
    Parameter Variation
    The following code was sourced from the ProcessFormAssignmentResponse page, but the file portion was removed as this example does not allow files when setting up the Assignment.

    Additionally, the first couple of lines may vary depending on if Specify User Credentials, Specify Session ID, or a Named Session was used. 
    {
      "userid": "YOUR USER ID",
      "password": "YOUR PASSWORD",
      "assignmentId": "StringValue",
      "response": "StringValue",
      "comment": "StringValue",
      "outputtype": "Json"
    }
    
    
    or 
    
    {
      "sessionid": "YOUR SESSION ID VALUE",
      "assignmentId": "StringValue",
      "response": "StringValue",
      "comment": "StringValue",
      "outputtype": "Json"
    }


Debug

To test this example: 

  1. Navigate back to the Decisions Studio and Run previously created Assignment Flow; if prompted to complete the Assignment, click NO. 
  2. Navigate to the Inbox Folder at the top of the Folder Tree.
  3. From the Action menu of the received Assignment, select Manage > Get Form Assignment ID.
  4. From the ID window, select Copy Text, then select DONE.
  5. Return to Postman, and replace the StringValue in the quotation marks for assignmentId with the copied Assignment ID
  6. Replace the StringValue for response with "Approved", replace the StringValue for comment with "Done", then click Send.
  7. After receiving the "ProcessFormAssignmentResponseResult": null Response, navigate to and refresh the Assignee's Inbox to confirm that the Assignment was completed via the API, and removed from the Inbox. 


Was this article helpful?