Executes the given code snippet and returns the output. Without a session_id, a new session will be created to run the code. If you do pass in a valid session_id, the code will be run in that session. This is useful for running multiple code snippets in the same environment, because dependencies and similar things are persisted between calls to the same session.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Execute Request
The body is of type object
.
Execute Response
The result of the execution. If successful, data
contains the result and errors
will be null. If unsuccessful, data
will be null and errors
will contain the errors.