Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Use /entity routing instead of /user

...

Endpoint ID:

8002

Method:

Status
colourGreen
titleGET

URL:

/user/dp-keyforms/entity/id/{dpentity-keyid}/form/{form-id}
/userforms/entity/ext-key/{ext-key}/{ext-type}/form/{form-id}


 

dpentity-keydialogportal™ master key that id

Rubiq entity ID that uniquely identifies the account to retrieve form data for


 

ext-key

External key that uniquely identifies the account to retrieve form data for


 ext-typeType of external key


 

form-id

Numeric value that identifies the form

Request body:

None

Request body:

 


A JSON array of form field values.

Code Block
titleExample
[
   {
      "fieldID": 87,
      "value": "This is a text field"
   },
   {
      "fieldID": 88,
      "value": 134
   },
   {
      "fieldID": 89,
      "value": [ 136, 138 ]
   }
]


Status codes:

200

Form data successfully retrieved

 


404

Form or account not found, or no previously submitted data found.

The following sub codes may be returned:

404.1User not found
404.2External user could not be found
404.4Form not found
404.5No form submission data found


...