JavaScript
import Mobilerun from '@mobilerun/sdk';
const client = new Mobilerun({
apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
});
const response = await client.workflows.events.dryRun({ eventType: 'x' });
console.log(response.data);import os
from mobilerun_sdk import Mobilerun
client = Mobilerun(
api_key=os.environ.get("MOBILERUN_CLOUD_API_KEY"), # This is the default and can be omitted
)
response = client.workflows.events.dry_run(
event_type="x",
)
print(response.data)package main
import (
"context"
"fmt"
"github.com/stainless-sdks/droidrun-cloud-go"
"github.com/stainless-sdks/droidrun-cloud-go/option"
)
func main() {
client := mobileruncloud.NewClient(
option.WithAPIKey("My API Key"),
)
response, err := client.Workflows.Events.DryRun(context.TODO(), mobileruncloud.WorkflowEventDryRunParams{
EventType: "x",
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
}mobilerun-cloud workflows:events dry-run \
--api-key 'My API Key' \
--event-type xcurl --request POST \
--url https://api.mobilerun.ai/events/dry-run \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"eventType": "<string>",
"deviceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"payload": {}
}
'<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mobilerun.ai/events/dry-run",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'eventType' => '<string>',
'deviceId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'payload' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.mobilerun.ai/events/dry-run")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"eventType\": \"<string>\",\n \"deviceId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"payload\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mobilerun.ai/events/dry-run")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"eventType\": \"<string>\",\n \"deviceId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"payload\": {}\n}"
response = http.request(request)
puts response.read_body{
"data": {
"validation": {
"valid": true,
"errors": [
{
"field": "<string>",
"message": "<string>"
}
]
},
"matchedFlows": [
{
"flow": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ownerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"triggerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": true,
"deviceIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"cooldownSeconds": 123,
"notifyWebhookId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"notifyOnSuccess": true,
"notifyOnFailure": true,
"lastTriggeredAt": "<string>",
"consecutiveFailures": 1,
"lastFailureAt": "<string>",
"blockedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
},
"trigger": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ownerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"scheduleRule": {
"dateTime": "<string>",
"expression": "<string>",
"rrule": "<string>"
},
"timezone": "<string>",
"eventType": "<string>",
"customPayloadSchema": {},
"createdAt": "<string>",
"updatedAt": "<string>",
"nextFireTime": "<string>",
"conditions": "<unknown>"
},
"actions": [
{
"name": "<string>",
"method": "<string>",
"continueOnError": true,
"params": {},
"children": [
"<unknown>"
]
}
],
"gates": {
"enabled": true,
"deviceAttached": true,
"deviceIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"blocked": true,
"cooldownActive": true
},
"wouldFire": true
}
]
}
}Events
Simulate event matching (dry run)
Simulate an event against all configured flows. Returns which flows would match and what actions would run, without storing the event or enqueuing jobs.
POST
/
events
/
dry-run
JavaScript
import Mobilerun from '@mobilerun/sdk';
const client = new Mobilerun({
apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
});
const response = await client.workflows.events.dryRun({ eventType: 'x' });
console.log(response.data);import os
from mobilerun_sdk import Mobilerun
client = Mobilerun(
api_key=os.environ.get("MOBILERUN_CLOUD_API_KEY"), # This is the default and can be omitted
)
response = client.workflows.events.dry_run(
event_type="x",
)
print(response.data)package main
import (
"context"
"fmt"
"github.com/stainless-sdks/droidrun-cloud-go"
"github.com/stainless-sdks/droidrun-cloud-go/option"
)
func main() {
client := mobileruncloud.NewClient(
option.WithAPIKey("My API Key"),
)
response, err := client.Workflows.Events.DryRun(context.TODO(), mobileruncloud.WorkflowEventDryRunParams{
EventType: "x",
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
}mobilerun-cloud workflows:events dry-run \
--api-key 'My API Key' \
--event-type xcurl --request POST \
--url https://api.mobilerun.ai/events/dry-run \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"eventType": "<string>",
"deviceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"payload": {}
}
'<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mobilerun.ai/events/dry-run",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'eventType' => '<string>',
'deviceId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'payload' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.post("https://api.mobilerun.ai/events/dry-run")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"eventType\": \"<string>\",\n \"deviceId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"payload\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mobilerun.ai/events/dry-run")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"eventType\": \"<string>\",\n \"deviceId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"payload\": {}\n}"
response = http.request(request)
puts response.read_body{
"data": {
"validation": {
"valid": true,
"errors": [
{
"field": "<string>",
"message": "<string>"
}
]
},
"matchedFlows": [
{
"flow": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ownerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"triggerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": true,
"deviceIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"cooldownSeconds": 123,
"notifyWebhookId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"notifyOnSuccess": true,
"notifyOnFailure": true,
"lastTriggeredAt": "<string>",
"consecutiveFailures": 1,
"lastFailureAt": "<string>",
"blockedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
},
"trigger": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ownerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"scheduleRule": {
"dateTime": "<string>",
"expression": "<string>",
"rrule": "<string>"
},
"timezone": "<string>",
"eventType": "<string>",
"customPayloadSchema": {},
"createdAt": "<string>",
"updatedAt": "<string>",
"nextFireTime": "<string>",
"conditions": "<unknown>"
},
"actions": [
{
"name": "<string>",
"method": "<string>",
"continueOnError": true,
"params": {},
"children": [
"<unknown>"
]
}
],
"gates": {
"enabled": true,
"deviceAttached": true,
"deviceIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"blocked": true,
"cooldownActive": true
},
"wouldFire": true
}
]
}
}Authorizations
Bearer token via Authorization header
Body
application/json
Response
200 - application/json
Dry-run result
Show child attributes
Show child attributes
Was this page helpful?
⌘I