Body

This is the standard HTTP body used for posting the data with a request. The Body can be configured as one of two types, Form Data or Raw data entry. Either of these is used for a specific operation.

Form Data

  1. Select Form Data.

  2. Add the respective data Key and Value. The Web Services source will not display an error when an endpoint's body type is selected as Form Data and the form entries are empty. The key value pairs will be sent as part of the Body in the JSON format. XML does not support form data.

Raw

  1. Select Raw.

  2. Enter the data in the Body field. Select Save.

Additional Information for Body

The following keywords will be used in the Body along with the placeholder $:

  • plan

  • response

  • application

  • getobject

  • authenticate

Handling the "$" Character in the URL and Body

The Web Services source correctly extracts and handles the $ character in the URL and Body, along with the placeholders.

Placeholder Details

  • The JSON request with the placeholder in the Body/Payload

    If the body contains a placeholder that is not present in the provisioning plan, response, or source, the source removes the key value from the JSON payload. For example,

    Copy
    {
        "type": "$plan.type$",
        "id": "$plan.nativeIdentity$",
        "title": "$plan.title$",
        "externalid": "12345"
    }

    If the plan does not contain the title attribute request, the source will remove the title key and value. For example,

    Copy
    {
        "type": "student",
        "id": "STUD121",
        "externalid": "12345"
    }
  • The XML request having placeholder in the Body/ Payload

    If the body contains placeholder that is not present in provisioning plan, response or source the source removes the value from the XML payload. Refer to the following example:

    Copy
    <worker>
        <fname>$plan.type$</fname>
        <lname>$plan.type$</lname>
        <wid>$plan.nativeIdentity$</wid>
        <description> permanent worker</description>
    </worker>

    If the plan does not contain a lname attribute request, the source removes lname value as displayed in the example below:

    Copy
    <worker>
        <fname>John</fname>
        <lname></lname>
        <wid>wid121</wid>
        <description> permanent worker</description>
    </worker>
  • URL

    If the URL contains a placeholder that is not present in the provisioning plan, response, or source, the source removes the value from the Request URL.

  • Header

    If the header contains a value that is not present in the provisioning plan, response, or source, the source removes the key value from the Request Header.