/trial-sessions
POST
/trial-sessions
const url = 'https://kravos-orchestrator.onrender.com/trial-sessions';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"applicationId":"example","organisationId":"example","ticketId":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://kravos-orchestrator.onrender.com/trial-sessions \ --header 'Content-Type: application/json' \ --data '{ "applicationId": "example", "organisationId": "example", "ticketId": "example" }'Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
applicationId
required
string
organisationId
required
string
ticketId
required
string
Examplegenerated
{ "applicationId": "example", "organisationId": "example", "ticketId": "example"}Responses
Section titled “ Responses ”Default Response