Hello,
I need to send this data via a REST interface.
{
"actorname": "Marking",
"taskname": "2022-06-10-O424",
"stepname": "EXECUTION_2",
"parameters": [
{ "name": "parameter A", "value": 73.1 },
{ "name": "parameter B", "value": 12 }
{ "name": "parameter C", "value": 173.1 },
{ "name": "parameter D", "value": 112 }
{ "name": "parameter E", "value": 273.1 },
{ "name": "parameter F", "value": 312 }
]
}
How can I achieve this?
How can I test this?
I think I have to send it by POST, because I have data with a relationship in it. 1 to n link.
What is the best way to achieve the goal?
GET is, I ask for infos.
POST, I must send a object, structure...
PUT, when must I need PUT?
Is there a test server where I can see what I have sent, where I can generate test messages.
Thanks for your help in advance.
Best regards