Response List
GET /v2/b2c/forms/responses
Query Parameters:
- page
- pageSize
- sortField
- sortDirection
Response Values
- Paginated List of FormResponseVo
Form Response Fetch
GET /v2/b2c/forms/responses/{id}
URL Parameters:
- id - id of the form response
Response Values
- JSON Representation of FormResponseVo
Form Response Creation
POST /v2/b2c/forms/responses
Input Parameters
- formResponseVo - JSON Representation of FormResponseVo
Response Values
- JSON Representation of the Form Response just created.
Form Response Update
PUT /v2/b2c/forms/responses/{id}
URL Parameters
Input Parameters
- formReponseVo - JSON Representation of FormResponseVo
Response Values
- JSON Representation of the Form Response updated.
Form Response Delete
DELETE /v2/b2c/forms/responses/{id}
URL Parameters
- id - Id of the form response to be deleted
Response Values
- JSON Representation of the Form Response just deleted
JSON Object
{
"id" : "5901111cda89d014dbfb6c09" ,
"formId" : "58f566e105f2eb2993aca81b" ,
"number" : "661261" ,
"name" : "My Event Form" ,
"type" : "order" ,
"source" : "acme" ,
"customFields" : [],
"responseData" : {
"fields" : [
{
"name" : "text-1492477711859" ,
"value" : "Not much" ,
"label" : "Do you Yahoo? *"
}
]
},
"submissionDate" : "2017-04-26T17:29:01-04:00"
}
|