POST api/CustomerResponse/UpsertCustomerResponse
Request Information
URI Parameters
None.
Body Parameters
Collection of UpsertCustomerResponseCommandDtoName | Description | Type | Additional information |
---|---|---|---|
ContestId | globally unique identifier |
None. |
|
CustomerId | globally unique identifier |
None. |
|
UserId | globally unique identifier |
None. |
|
QuestionId | globally unique identifier |
None. |
|
Options | Collection of QuestionResponseOptions |
None. |
Request Formats
application/json, text/json
Sample:
[ { "ContestId": "eec519ce-370a-4e51-9e03-2ba981e57680", "CustomerId": "e409a64d-2f71-4bcf-91a3-7da657ee1362", "UserId": "977f581c-e0d5-42f7-b4b1-30c862ddc4bc", "QuestionId": "736207a8-8973-4165-9573-baeae0e8ded4", "Options": [ { "OptionText": "sample string 1", "OptionId": "4f51f840-b4e7-4280-a486-016e2cb374e8", "Sequence": 2, "Name": "sample string 3", "NameImage": "sample string 4" }, { "OptionText": "sample string 1", "OptionId": "4f51f840-b4e7-4280-a486-016e2cb374e8", "Sequence": 2, "Name": "sample string 3", "NameImage": "sample string 4" } ] }, { "ContestId": "eec519ce-370a-4e51-9e03-2ba981e57680", "CustomerId": "e409a64d-2f71-4bcf-91a3-7da657ee1362", "UserId": "977f581c-e0d5-42f7-b4b1-30c862ddc4bc", "QuestionId": "736207a8-8973-4165-9573-baeae0e8ded4", "Options": [ { "OptionText": "sample string 1", "OptionId": "4f51f840-b4e7-4280-a486-016e2cb374e8", "Sequence": 2, "Name": "sample string 3", "NameImage": "sample string 4" }, { "OptionText": "sample string 1", "OptionId": "4f51f840-b4e7-4280-a486-016e2cb374e8", "Sequence": 2, "Name": "sample string 3", "NameImage": "sample string 4" } ] } ]
application/xml, text/xml
Sample:
<ArrayOfUpsertCustomerResponseCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerResponseMoule.Model"> <UpsertCustomerResponseCommandDto> <ContestId>eec519ce-370a-4e51-9e03-2ba981e57680</ContestId> <CustomerId>e409a64d-2f71-4bcf-91a3-7da657ee1362</CustomerId> <Options> <QuestionResponseOptions> <Name>sample string 3</Name> <NameImage>sample string 4</NameImage> <OptionId>4f51f840-b4e7-4280-a486-016e2cb374e8</OptionId> <OptionText>sample string 1</OptionText> <Sequence>2</Sequence> </QuestionResponseOptions> <QuestionResponseOptions> <Name>sample string 3</Name> <NameImage>sample string 4</NameImage> <OptionId>4f51f840-b4e7-4280-a486-016e2cb374e8</OptionId> <OptionText>sample string 1</OptionText> <Sequence>2</Sequence> </QuestionResponseOptions> </Options> <QuestionId>736207a8-8973-4165-9573-baeae0e8ded4</QuestionId> <UserId>977f581c-e0d5-42f7-b4b1-30c862ddc4bc</UserId> </UpsertCustomerResponseCommandDto> <UpsertCustomerResponseCommandDto> <ContestId>eec519ce-370a-4e51-9e03-2ba981e57680</ContestId> <CustomerId>e409a64d-2f71-4bcf-91a3-7da657ee1362</CustomerId> <Options> <QuestionResponseOptions> <Name>sample string 3</Name> <NameImage>sample string 4</NameImage> <OptionId>4f51f840-b4e7-4280-a486-016e2cb374e8</OptionId> <OptionText>sample string 1</OptionText> <Sequence>2</Sequence> </QuestionResponseOptions> <QuestionResponseOptions> <Name>sample string 3</Name> <NameImage>sample string 4</NameImage> <OptionId>4f51f840-b4e7-4280-a486-016e2cb374e8</OptionId> <OptionText>sample string 1</OptionText> <Sequence>2</Sequence> </QuestionResponseOptions> </Options> <QuestionId>736207a8-8973-4165-9573-baeae0e8ded4</QuestionId> <UserId>977f581c-e0d5-42f7-b4b1-30c862ddc4bc</UserId> </UpsertCustomerResponseCommandDto> </ArrayOfUpsertCustomerResponseCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseDtoName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
CustomerId | globally unique identifier |
None. |
|
Token | string |
None. |
|
Message | string |
None. |
|
ErrorMessage | string |
None. |
|
MessageFr | string |
None. |
|
ResponseData | string |
None. |
|
NovaAPIId | string |
None. |
|
IsSuccess | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "UserId": "0ae30f53-261e-48aa-9f1c-e88e77e9722c", "CustomerId": "2389241c-7fc1-4e97-b337-bce8aae5ca1b", "Token": "sample string 3", "Message": "sample string 4", "ErrorMessage": "sample string 5", "MessageFr": "sample string 6", "ResponseData": "sample string 7", "NovaAPIId": "sample string 8", "IsSuccess": true }
application/xml, text/xml
Sample:
<ResponseDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerModule.Model"> <CustomerId>2389241c-7fc1-4e97-b337-bce8aae5ca1b</CustomerId> <ErrorMessage>sample string 5</ErrorMessage> <IsSuccess>true</IsSuccess> <Message>sample string 4</Message> <MessageFr>sample string 6</MessageFr> <NovaAPIId>sample string 8</NovaAPIId> <ResponseData>sample string 7</ResponseData> <Token>sample string 3</Token> <UserId>0ae30f53-261e-48aa-9f1c-e88e77e9722c</UserId> </ResponseDto>