@Stef I haven't tried this yet...
I am new to this. Where can I put this empty body to?
Here is my Get Action of the swagger file..
"get": {
"summary": "GetContacts",
"description": "GetContacts",
"operationId": "GetContacts",
"parameters": [
{
"name": "Content-Type",
"in": "header",
"required": true,
"type": "string",
"default": " application/json",
"description": "Content-Type"
}
],
"responses": {
"200": {
"description": "200",
"schema": {
"type": "object",
"properties": {
"@odata.context": {
"type": "string",
"description": "@odata.context"
},
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"@odata.etag": {
"type": "string",
"description": "@odata.etag"
},
"knk_ID": {
"type": "string",
"description": "ID"
},
"No": {
"type": "string",
"description": "No"
},
"Name": {
"type": "string",
"description": "Name"
}
}
},
"description": "value"
}
}
}
}
}
}