Create yes/no userfield

Last modified on September 11, 2023 at 1:49 pm

Overview

Create a new custom yesno userfield by sending an HTTP POST request with JSON representing the userfield to create. A Yes-No userfield will be displayed to the user as a dropdown list with the two options Yes and No available. On success, the request will return HTTP 201 Created with a Location header pointing to the URL of the newly created userfield resource; otherwise, an appropriate error will be returned. See the failure cases section for more details.

JSON Object Definition

The following is the subset of the JSON object representing userfields applicable to the yesno userfield type.

{
  "type": "yesno",
  "name": "",
  "categoryName": "",
  "orderIndex": 0
}

Userfield Property Details

PropertyNotes
type
required
To create a yesno userfield, this property must be present and have the value yesno.
name
required
This property will be the default label on the user information form presented to the end-user.
categoryName
required
Sets the category the userfield is located within. To the end user, categories will appear as sections or groupings of userfields on the user information form. To create a category or retrieve a list of your existing categories, see the userfield category documentation.
orderIndexSpecifies what position the userfield appears in within its category. This should be an integer value greater than or equal to 0. If not provided, the userfield will be placed at the end of the category.

Examples

Create Custom Yes-No Userfield

This example shows the creation of a custom user-visible yesno userfield with one localized name.

Request
POST /dc/api/v5/userfields HTTP/1.1
Host: api.digitalchalk.com
Content-type: application/json
Accept: application/json

{
	"type": "yesno",
	"name": "Example Yes-No Input",
	"categoryName": "Example Category Name"
}
Response
HTTP/1.1 201 Created 
Location: https://org.digitalchalk.com/dc/api/v5/userfields/877f00ced040feaedcbc12878679305
Content-length: 0

Failure Cases

Below is a list of the most common failure scenarios your code should be prepared to handle. This list is not exhaustive.

Validation error

If there is no userfield resource located at the given URL, the server will issue a 400 Bad Request response with a JSON object in the response body. The object contains a message attribute describing the eror.

Request
POST /dc/api/v5/userfields HTTP/1.1
Host: api.digitalchalk.com
Content-type: application/json
Accept: application/json

{
	"type": "yesno",
	"name": "Example Yes-No Input"
}
Response
HTTP/1.1 400 Bad Request
Content-type: application/json
Content-length: 210

{
    "fieldErrors": {
        "categoryName": "required"
    }
}

References