curl --request GET \
--url https://api.zivio.net/api/v4/eois \
--header 'Authorization: Bearer <token>' \
--header 'zivio-tenant-id: <api-key>'import requests
url = "https://api.zivio.net/api/v4/eois"
headers = {
"Authorization": "Bearer <token>",
"zivio-tenant-id": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'zivio-tenant-id': '<api-key>'}
};
fetch('https://api.zivio.net/api/v4/eois', 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://api.zivio.net/api/v4/eois",
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>",
"zivio-tenant-id: <api-key>"
],
]);
$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://api.zivio.net/api/v4/eois"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("zivio-tenant-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zivio.net/api/v4/eois")
.header("Authorization", "Bearer <token>")
.header("zivio-tenant-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zivio.net/api/v4/eois")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["zivio-tenant-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"eois": [
{
"id": 101,
"title": "Website Redesign Project",
"description": "Complete redesign of corporate website with modern UX",
"status": "pending",
"submission_deadline": "2024-01-16T10:30:00+00:00",
"time_zone": "Example time_zone",
"submission_deadline_visibility": true,
"eoi_matches_count": null,
"skill_category": {
"id": 101,
"name": "Acme Corporation",
"code": "Example code",
"slug": "Example slug",
"precedence": 101,
"parent_id": 501,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_subcategory": {
"id": 101,
"name": "Acme Corporation",
"code": "Example code",
"slug": "Example slug",
"precedence": 101,
"parent_id": 501,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_category_tier3": {
"id": 101,
"name": "Acme Corporation",
"code": "Example code",
"slug": "Example slug",
"precedence": 101,
"parent_id": 501,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skills": [
{
"id": 101,
"name": "Acme Corporation",
"slug": "Example slug"
},
{
"id": 102,
"name": "Global Services Ltd",
"slug": "Example slug"
}
],
"owner": {
"id": 101,
"first_name": "Demo",
"last_name": "User",
"email": "user1@example.com",
"org_id": 501,
"org_name": "Acme Corporation"
},
"approver": {
"id": 101,
"first_name": "Demo",
"last_name": "User",
"email": "user1@example.com",
"org_id": 501,
"org_name": "Acme Corporation"
},
"client_org": {
"id": 101,
"name": "Acme Corporation",
"is_external_client": true
},
"ended_at": "2024-01-16T10:30:00+00:00",
"cancellation_reason": "Example cancellation_reason",
"custom_fields": {
"department": "Engineering",
"priority": "high",
"cost_code": "CC-001"
},
"cancelled_by": {
"id": 101,
"first_name": "Demo",
"last_name": "User",
"email": "user1@example.com",
"org_id": 501,
"org_name": "Acme Corporation"
},
"cancelled_at": "2024-01-16T10:30:00+00:00",
"created_at": "2024-01-16T10:30:00+00:00",
"updated_at": "2024-01-16T10:30:00+00:00",
"project": {
"id": 101,
"title": "Website Redesign Project",
"description": "Complete redesign of corporate website with modern UX"
}
},
{
"id": 102,
"title": "Mobile App Development",
"description": "Native iOS and Android application",
"status": "rejected",
"submission_deadline": "2024-01-17T10:30:00+00:00",
"time_zone": "Example time_zone",
"submission_deadline_visibility": true,
"eoi_matches_count": null,
"skill_category": {
"id": 102,
"name": "Global Services Ltd",
"code": "Example code",
"slug": "Example slug",
"precedence": 102,
"parent_id": 502,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_subcategory": {
"id": 102,
"name": "Global Services Ltd",
"code": "Example code",
"slug": "Example slug",
"precedence": 102,
"parent_id": 502,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_category_tier3": {
"id": 102,
"name": "Global Services Ltd",
"code": "Example code",
"slug": "Example slug",
"precedence": 102,
"parent_id": 502,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skills": [
{
"id": 102,
"name": "Global Services Ltd",
"slug": "Example slug"
},
{
"id": 103,
"name": "Global Services Ltd",
"slug": "Example slug"
}
],
"owner": {
"id": 102,
"first_name": "Jane",
"last_name": "Smith",
"email": "user2@example.com",
"org_id": 502,
"org_name": "Global Services Ltd"
},
"approver": {
"id": 102,
"first_name": "Jane",
"last_name": "Smith",
"email": "user2@example.com",
"org_id": 502,
"org_name": "Global Services Ltd"
},
"client_org": {
"id": 102,
"name": "Global Services Ltd",
"is_external_client": true
},
"ended_at": "2024-01-17T10:30:00+00:00",
"cancellation_reason": "Example cancellation_reason",
"custom_fields": {
"department": "Engineering",
"priority": "high",
"cost_code": "CC-001"
},
"cancelled_by": {
"id": 102,
"first_name": "Jane",
"last_name": "Smith",
"email": "user2@example.com",
"org_id": 502,
"org_name": "Global Services Ltd"
},
"cancelled_at": "2024-01-17T10:30:00+00:00",
"created_at": "2024-01-17T10:30:00+00:00",
"updated_at": "2024-01-17T10:30:00+00:00",
"project": {
"id": 102,
"title": "Mobile App Development",
"description": "Native iOS and Android application"
}
}
]
}List Eois
Retrieve a paginated list of eois. Use filters to narrow results.
Filtering
Use the filter[<attribute>] parameter to filter results. Multiple filters are combined with AND logic.
Basic Examples
# Equality (implicit)
GET /api/v4/eois?filter[status]=draft
# Multiple values (implicit IN)
GET /api/v4/eois?filter[status]=draft,rejected
# With explicit operator
GET /api/v4/eois?filter[created_at][gte]=2024-01-01
# Range query
GET /api/v4/eois?filter[skill_category_id][between]=10,100
# Multiple filters (AND)
GET /api/v4/eois?filter[status]=draft&filter[skill_category_id][gte]=10
Available Attributes
| Attribute | Type | Operators | Permitted Values |
|---|---|---|---|
| approver_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| cancellation_reason | string | eq, not_eq, in, not_in, like, not_like | - |
| cancelled_at | datetime | eq, not_eq, gt, gte, lt, lte, between | - |
| cancelled_by_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| client_org_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| created_at | datetime | eq, not_eq, gt, gte, lt, lte, between | - |
| description | string | eq, not_eq, in, not_in, like, not_like | - |
| ended_at | datetime | eq, not_eq, gt, gte, lt, lte, between | - |
| eoi_matches_count | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| owner_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| project_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| skill_category_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| skill_category_tier3_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| skill_subcategory_id | integer | eq, not_eq, in, not_in, gt, gte, lt, lte, between | - |
| status | string | eq, not_eq, in, not_in | draft, pending, rejected, open, closed, cancelled |
| submission_deadline | datetime | eq, not_eq, gt, gte, lt, lte, between | - |
| submission_deadline_visibility | boolean | eq, not_eq | - |
| time_zone | string | eq, not_eq, in, not_in, like, not_like | - |
| title | string | eq, not_eq, in, not_in, like, not_like | - |
| updated_at | datetime | eq, not_eq, gt, gte, lt, lte, between | - |
Custom Fields
This resource supports custom field filtering using cf[key] syntax:
# Equality
GET /api/v4/eois?cf[priority]=high
# With operator
GET /api/v4/eois?cf[department][in]=engineering,design
# Check existence
GET /api/v4/eois?cf[priority][exists]=
# Negation
GET /api/v4/eois?cf[priority][not_eq]=low
OR Conditions
Use or[group] to combine filter groups with OR logic. Filters within a group are ANDed:
# Simple OR
GET /api/v4/eois?or[1][status]=pending&or[2][status]=draft
# Complex OR (status=pending AND skill_category_id>=10) OR (status=draft)
GET /api/v4/eois?or[1][status]=pending&or[1][skill_category_id][gte]=10&or[2][status]=draft
Sorting
Use sort[<attribute>] to order results. Default direction is ascending.
# Ascending (implicit)
GET /api/v4/eois?sort[created_at]=
# Descending
GET /api/v4/eois?sort[created_at]=desc
# Combined with filters
GET /api/v4/eois?filter[status]=draft&sort[created_at]=desc
curl --request GET \
--url https://api.zivio.net/api/v4/eois \
--header 'Authorization: Bearer <token>' \
--header 'zivio-tenant-id: <api-key>'import requests
url = "https://api.zivio.net/api/v4/eois"
headers = {
"Authorization": "Bearer <token>",
"zivio-tenant-id": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'zivio-tenant-id': '<api-key>'}
};
fetch('https://api.zivio.net/api/v4/eois', 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://api.zivio.net/api/v4/eois",
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>",
"zivio-tenant-id: <api-key>"
],
]);
$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://api.zivio.net/api/v4/eois"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("zivio-tenant-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zivio.net/api/v4/eois")
.header("Authorization", "Bearer <token>")
.header("zivio-tenant-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zivio.net/api/v4/eois")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["zivio-tenant-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"eois": [
{
"id": 101,
"title": "Website Redesign Project",
"description": "Complete redesign of corporate website with modern UX",
"status": "pending",
"submission_deadline": "2024-01-16T10:30:00+00:00",
"time_zone": "Example time_zone",
"submission_deadline_visibility": true,
"eoi_matches_count": null,
"skill_category": {
"id": 101,
"name": "Acme Corporation",
"code": "Example code",
"slug": "Example slug",
"precedence": 101,
"parent_id": 501,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_subcategory": {
"id": 101,
"name": "Acme Corporation",
"code": "Example code",
"slug": "Example slug",
"precedence": 101,
"parent_id": 501,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_category_tier3": {
"id": 101,
"name": "Acme Corporation",
"code": "Example code",
"slug": "Example slug",
"precedence": 101,
"parent_id": 501,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skills": [
{
"id": 101,
"name": "Acme Corporation",
"slug": "Example slug"
},
{
"id": 102,
"name": "Global Services Ltd",
"slug": "Example slug"
}
],
"owner": {
"id": 101,
"first_name": "Demo",
"last_name": "User",
"email": "user1@example.com",
"org_id": 501,
"org_name": "Acme Corporation"
},
"approver": {
"id": 101,
"first_name": "Demo",
"last_name": "User",
"email": "user1@example.com",
"org_id": 501,
"org_name": "Acme Corporation"
},
"client_org": {
"id": 101,
"name": "Acme Corporation",
"is_external_client": true
},
"ended_at": "2024-01-16T10:30:00+00:00",
"cancellation_reason": "Example cancellation_reason",
"custom_fields": {
"department": "Engineering",
"priority": "high",
"cost_code": "CC-001"
},
"cancelled_by": {
"id": 101,
"first_name": "Demo",
"last_name": "User",
"email": "user1@example.com",
"org_id": 501,
"org_name": "Acme Corporation"
},
"cancelled_at": "2024-01-16T10:30:00+00:00",
"created_at": "2024-01-16T10:30:00+00:00",
"updated_at": "2024-01-16T10:30:00+00:00",
"project": {
"id": 101,
"title": "Website Redesign Project",
"description": "Complete redesign of corporate website with modern UX"
}
},
{
"id": 102,
"title": "Mobile App Development",
"description": "Native iOS and Android application",
"status": "rejected",
"submission_deadline": "2024-01-17T10:30:00+00:00",
"time_zone": "Example time_zone",
"submission_deadline_visibility": true,
"eoi_matches_count": null,
"skill_category": {
"id": 102,
"name": "Global Services Ltd",
"code": "Example code",
"slug": "Example slug",
"precedence": 102,
"parent_id": 502,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_subcategory": {
"id": 102,
"name": "Global Services Ltd",
"code": "Example code",
"slug": "Example slug",
"precedence": 102,
"parent_id": 502,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skill_category_tier3": {
"id": 102,
"name": "Global Services Ltd",
"code": "Example code",
"slug": "Example slug",
"precedence": 102,
"parent_id": 502,
"parent_name": "Example parent_name",
"parent_slug": "Example parent_slug"
},
"skills": [
{
"id": 102,
"name": "Global Services Ltd",
"slug": "Example slug"
},
{
"id": 103,
"name": "Global Services Ltd",
"slug": "Example slug"
}
],
"owner": {
"id": 102,
"first_name": "Jane",
"last_name": "Smith",
"email": "user2@example.com",
"org_id": 502,
"org_name": "Global Services Ltd"
},
"approver": {
"id": 102,
"first_name": "Jane",
"last_name": "Smith",
"email": "user2@example.com",
"org_id": 502,
"org_name": "Global Services Ltd"
},
"client_org": {
"id": 102,
"name": "Global Services Ltd",
"is_external_client": true
},
"ended_at": "2024-01-17T10:30:00+00:00",
"cancellation_reason": "Example cancellation_reason",
"custom_fields": {
"department": "Engineering",
"priority": "high",
"cost_code": "CC-001"
},
"cancelled_by": {
"id": 102,
"first_name": "Jane",
"last_name": "Smith",
"email": "user2@example.com",
"org_id": 502,
"org_name": "Global Services Ltd"
},
"cancelled_at": "2024-01-17T10:30:00+00:00",
"created_at": "2024-01-17T10:30:00+00:00",
"updated_at": "2024-01-17T10:30:00+00:00",
"project": {
"id": 102,
"title": "Mobile App Development",
"description": "Native iOS and Android application"
}
}
]
}Authorizations
OAuth 2.0 client credentials. The access token from POST /oauth/token is sent as a bearer token. Request only the scopes you need.
Your Zivio organisation identifier. The regional API endpoints serve every Zivio organisation, so each request must identify yours.
Query Parameters
Page number for pagination
Number of results per page (max 100)
x <= 100Filterable attributes:
integer (operators: eq, not_eq, in, not_in, gt, gte, lt, lte, between): approver_id, cancelled_by_id, client_org_id, eoi_matches_count, id, owner_id, project_id, skill_category_id, skill_category_tier3_id, skill_subcategory_id datetime (operators: eq, not_eq, gt, gte, lt, lte, between): cancelled_at, created_at, ended_at, submission_deadline, updated_at string (operators: eq, not_eq, in, not_in, like, not_like): cancellation_reason, description, status (one of: draft, pending, rejected, open, closed, cancelled), time_zone, title boolean (operators: eq, not_eq): submission_deadline_visibility
Note: like is a case-insensitive substring match — pass the bare term (filter[title][like]=redesign). Do not add % wildcards; they are not needed.
OR condition groups. Filters within a group are ANDed; groups are ORed.
Syntax: or[group_key][<attribute>]=value or or[group_key][<attribute>][operator]=value
Examples:
- Simple OR:
or[1][state]=draft&or[2][state]=pending - Complex:
or[1][state]=draft&or[1][budget][gte]=50000&or[2][state]=closed - With custom fields:
or[1][cf][priority]=high&or[2][state]=pending
Group keys can be any string (1, 2, a, b, etc.) - they just need to be unique.
Custom field filters using concise syntax.
Syntax:
- Equality:
cf[key]=value - With operator:
cf[key][operator]=value
Operators: eq (default), not_eq, in, not_in, contains, not_contains, exists, not_exists
Examples:
cf[priority]=high- exact matchcf[department][in]=eng,design- matches anycf[priority][not_eq]=low- not equalcf[notes][contains]=urgent- contains textcf[legacy_field][exists]=- field exists (value ignored)cf[deprecated][not_exists]=- field does not exist
Custom field filters within OR condition groups.
Syntax: or[group][cf][key]=value or or[group][cf][key][operator]=value
Example: or[1][cf][priority]=high&or[2][state]=pending
Sort results by attribute. Direction defaults to ascending.
Syntax: sort[<attribute>]= (ascending) or sort[<attribute>]=desc (descending)
Sortable attributes: approver_id, cancellation_reason, cancelled_at, cancelled_by_id, client_org_id, created_at, description, ended_at, eoi_matches_count, id, owner_id, project_id, skill_category_id, skill_category_tier3_id, skill_subcategory_id, status, submission_deadline, submission_deadline_visibility, time_zone, title, updated_at
Examples:
- Ascending:
sort[created_at]=orsort[created_at]=asc - Descending:
sort[created_at]=desc
Response
List of eois
Show child attributes
Show child attributes

