Agendize forms API

Form Result Status

Resource representation

{ "resultId": {string}, "status": {string}, "login": {string}, "date": {string}, "connectedUser": {string} }
Parameter name Value Description
resultId string Identifier of the result.
status string State of the status : NEUTRAL, IN_PROGRESS, FINISHED or REOPENING
login string The login of the account who made the modification of the status
date string Date of the modification of the status.
connectedUser string The user who made the modification of the status

List

Returns entries on the form result status list.

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

GET https://api.agendize.com/api/2.3/forms/{formId}/results/{resultId}/status/

Parameters

Parameter name Value Description
Path parameters
formId string Form identifier.
resultId string Form result identifier.

Request body

Do not supply a request body with this method.

Response

If successful, this method returns a response body with the following structure:


Insert

Adds an entry to the form result status list.

Authentication is required to execute this request. Please refer to Authentication for more.

Request

HTTP Request

POST https://api.agendize.com/api/2.3/forms/{formId}/results/{resultId}/status/

Parameters

Parameter name Value Description
Path parameters
formId string Form identifier.
resultId string Form result identifier.

Request body

In the request body, supply a Form Result Status Resource with the following properties:

Parameter name Value Description
Required Properties
resultId string Form result identifier.
status string State of the status : NEUTRAL, IN_PROGRESS, FINISHED or REOPENING
login string The login of the account who made the modification of the status
date string Date of the modification of the status.
connectedUser string The user who made the modification of the status

Response

If successful, this method returns a Form Result Status resource in the response body.