POST /external/api/v3/customer/addformnotes
Add form notes.
Request Information
URI Parameters
None.
Body Parameters
AddFormNoteRequestName | Description | Type | Additional information | Nullable |
---|---|---|---|---|
Notes | Collection of FormNote |
None |
False |
Request Formats
application/json
Sample:
{ "Notes": [ { "CustomerId": 1, "Date": "2024-11-21T09:44:58.0594571+01:00", "User": "sample string 3", "Note": "sample string 4", "Type": 0 }, { "CustomerId": 1, "Date": "2024-11-21T09:44:58.0594571+01:00", "User": "sample string 3", "Note": "sample string 4", "Type": 0 } ] }
application/xml
Sample:
<AddFormNoteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Expoints.API.Extern.Domain.Customer.V3.Requests"> <Notes xmlns:d2p1="http://schemas.datacontract.org/2004/07/Expoints.API.Extern.Domain.Customer.Shared.Models"> <d2p1:FormNote> <d2p1:CustomerId>1</d2p1:CustomerId> <d2p1:Date>2024-11-21T09:44:58.0594571+01:00</d2p1:Date> <d2p1:Note>sample string 4</d2p1:Note> <d2p1:Type>InteractionBySystem</d2p1:Type> <d2p1:User>sample string 3</d2p1:User> </d2p1:FormNote> <d2p1:FormNote> <d2p1:CustomerId>1</d2p1:CustomerId> <d2p1:Date>2024-11-21T09:44:58.0594571+01:00</d2p1:Date> <d2p1:Note>sample string 4</d2p1:Note> <d2p1:Type>InteractionBySystem</d2p1:Type> <d2p1:User>sample string 3</d2p1:User> </d2p1:FormNote> </Notes> </AddFormNoteRequest>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.
Response Status Codes
Status Code | Name | Description |
---|---|---|
200 | OK | The request has succeeded. |
400 | Bad Request | Fulfilling the request would cause an invalid state. Request needs modification. |
401 | Unauthorized | Missing or invalid authentication token. |
403 | Forbidden | Server refuses to authorize the request. |
408 | Request Timeout | The server timed out waiting for the request. |
429 | Too Many Requests | Too many requests in a given amount of time. |
500 | Internal Server Error | The server encountered an unexpected condition which prevented it from fulfilling the request. |
503 | Service Unavailable | The server is unable to proces the request at the moment, try again later. |