Discussions
Executes an EventRegistration operation
3 months ago by Charitha Panditharatne
I'm trying to register people in to IMIS event using following.
POST https://IMISSITE/api/EventRegistration/_execute
I have the following in the body of the request and its works fine.
{
"$type":"Asi.Soa.Events.DataContracts.EventRegistrationRequest, Asi.Contracts",
"BillTo":"84008",
"EntityTypeName":"EventRegistration",
"EventId":"20250527E2",
"RegistrationOptionFunctionId":"20250527E2/20ECONOV17FULL1",
"FunctionId":"20250527E2/20ECONOV17FLPG3",
"OperationName":"EventRegistration",
"RegisteredBy":"2",
"RegistrantId":"84008",
"RegistrationType":3,
"Waitlist": false
}
How should i constructs the json body in case i have an event with multiple program items.? Much appreciate if you can provide me an example.