Get actions
curl --request GET \
--url https://incoming.qomon.app/actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://incoming.qomon.app/actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://incoming.qomon.app/actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://incoming.qomon.app/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://incoming.qomon.app/actions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://incoming.qomon.app/actions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://incoming.qomon.app/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"ActionsAggreg": [
{
"Action": {
"ID": 1,
"Addresses": [
{
"addition": "<string>",
"building": "<string>",
"city": "<string>",
"country": "<string>",
"county": "<string>",
"door": "<string>",
"floor": "<string>",
"housenumber": "<string>",
"id": 1,
"infos": "<string>",
"latitude": "<string>",
"location": "<string>",
"longitude": "<string>",
"pollingstation": "<string>",
"postalcode": "<string>",
"score": 123,
"state": "<string>",
"street": "<string>"
}
],
"CreatedAt": "2023-11-07T05:31:56Z",
"Forms": [
{
"id": 1,
"label": "<string>",
"refvalues": [
{
"form_id": 1,
"id": 1,
"label": "<string>",
"value": "<string>",
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"max": 1,
"min": 1,
"order": 1,
"step": 1
}
],
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"group_id": [
123
]
}
],
"Teams": [
{
"id": 1,
"name": "<string>",
"address": {
"addition": "<string>",
"building": "<string>",
"city": "<string>",
"country": "<string>",
"county": "<string>",
"door": "<string>",
"floor": "<string>",
"housenumber": "<string>",
"id": 1,
"infos": "<string>",
"latitude": "<string>",
"location": "<string>",
"longitude": "<string>",
"pollingstation": "<string>",
"postalcode": "<string>",
"score": 123,
"state": "<string>",
"street": "<string>"
},
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"hide_users": true,
"leaders": [
{
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
],
"private": true,
"updated_at": "2023-11-07T05:31:56Z",
"userswithactive": [
{
"active": true,
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
]
}
],
"UpdatedAt": "2023-11-07T05:31:56Z",
"Users": [
{
"active": true,
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
],
"advanced_search": "<unknown>",
"broadcast_link": "<string>",
"cover_img": "<unknown>",
"created_by": 1,
"created_by_details": {
"avatar": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"phone": "<string>",
"status": "<string>"
},
"end": "2023-11-07T05:31:56Z",
"featured": true,
"form_state": "<string>",
"goal": 123,
"goal_forms": 123,
"gotv_abstention_tag": "<string>",
"gotv_not_voted_tag": "<string>",
"gotv_voted_tag": "<string>",
"group_id": 1,
"hide_broadcast_link": true,
"leaders": [
{
"active": true,
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
],
"links": [
"<string>"
],
"maximum_capacity": 1,
"name": "<string>",
"pitch": "<string>",
"polygon": "<string>",
"promote_sharing": true,
"public": true,
"registration_link": "<string>",
"restricted": true,
"site_id": "<string>",
"site_slug": "<string>",
"site_state": "<string>",
"start": "2023-11-07T05:31:56Z",
"survey_id": 1,
"time_zone": "<string>"
},
"NbContacts": 123,
"NbVisites": 123,
"NbVisitesDeclared": 123
}
]
},
"status": "<string>"
}{
"detail": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "about:blank"
}Actions
Get actions
Get actions
GET
/
actions
Get actions
curl --request GET \
--url https://incoming.qomon.app/actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://incoming.qomon.app/actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://incoming.qomon.app/actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://incoming.qomon.app/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://incoming.qomon.app/actions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://incoming.qomon.app/actions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://incoming.qomon.app/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"ActionsAggreg": [
{
"Action": {
"ID": 1,
"Addresses": [
{
"addition": "<string>",
"building": "<string>",
"city": "<string>",
"country": "<string>",
"county": "<string>",
"door": "<string>",
"floor": "<string>",
"housenumber": "<string>",
"id": 1,
"infos": "<string>",
"latitude": "<string>",
"location": "<string>",
"longitude": "<string>",
"pollingstation": "<string>",
"postalcode": "<string>",
"score": 123,
"state": "<string>",
"street": "<string>"
}
],
"CreatedAt": "2023-11-07T05:31:56Z",
"Forms": [
{
"id": 1,
"label": "<string>",
"refvalues": [
{
"form_id": 1,
"id": 1,
"label": "<string>",
"value": "<string>",
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"max": 1,
"min": 1,
"order": 1,
"step": 1
}
],
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"group_id": [
123
]
}
],
"Teams": [
{
"id": 1,
"name": "<string>",
"address": {
"addition": "<string>",
"building": "<string>",
"city": "<string>",
"country": "<string>",
"county": "<string>",
"door": "<string>",
"floor": "<string>",
"housenumber": "<string>",
"id": 1,
"infos": "<string>",
"latitude": "<string>",
"location": "<string>",
"longitude": "<string>",
"pollingstation": "<string>",
"postalcode": "<string>",
"score": 123,
"state": "<string>",
"street": "<string>"
},
"created_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"hide_users": true,
"leaders": [
{
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
],
"private": true,
"updated_at": "2023-11-07T05:31:56Z",
"userswithactive": [
{
"active": true,
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
]
}
],
"UpdatedAt": "2023-11-07T05:31:56Z",
"Users": [
{
"active": true,
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
],
"advanced_search": "<unknown>",
"broadcast_link": "<string>",
"cover_img": "<unknown>",
"created_by": 1,
"created_by_details": {
"avatar": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"phone": "<string>",
"status": "<string>"
},
"end": "2023-11-07T05:31:56Z",
"featured": true,
"form_state": "<string>",
"goal": 123,
"goal_forms": 123,
"gotv_abstention_tag": "<string>",
"gotv_not_voted_tag": "<string>",
"gotv_voted_tag": "<string>",
"group_id": 1,
"hide_broadcast_link": true,
"leaders": [
{
"active": true,
"CreatedAt": "2023-11-07T05:31:56Z",
"UpdatedAt": "2023-11-07T05:31:56Z",
"address": "<string>",
"avatar": "<string>",
"birthdate": "2023-11-07T05:31:56Z",
"city": "<string>",
"created": "2023-11-07T05:31:56Z",
"firstname": "<string>",
"group_id": [
123
],
"id": 123,
"locale": "<string>",
"location": "<string>",
"mail": "jsmith@example.com",
"phone": "<string>",
"postal": "<string>",
"status": "<string>",
"surname": "<string>",
"two_factor_enable": true
}
],
"links": [
"<string>"
],
"maximum_capacity": 1,
"name": "<string>",
"pitch": "<string>",
"polygon": "<string>",
"promote_sharing": true,
"public": true,
"registration_link": "<string>",
"restricted": true,
"site_id": "<string>",
"site_slug": "<string>",
"site_state": "<string>",
"start": "2023-11-07T05:31:56Z",
"survey_id": 1,
"time_zone": "<string>"
},
"NbContacts": 123,
"NbVisites": 123,
"NbVisitesDeclared": 123
}
]
},
"status": "<string>"
}{
"detail": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "about:blank"
}Last modified on July 7, 2026
Was this page helpful?
⌘I

