EOIs
Retrieve an EOI by ID
Endpoints
- Welcome
- Bank Accounts
- Bids
- EOIs
- EOI Responses
- Invoices
- Job Approvals
- Jobs
- Milestones
- Offers
- Orgs
- Purchase Orders
- Sales Invoices
- Sales Milestones
- Skill Categories
- Skill Taxonomies
- Skills
- Suppliers
- Supplier Lists
- Users
- Variation Orders
EOIs
Retrieve an EOI by ID
GET
/
eois
/
{id}
curl --request GET \
--url https://api.zivio.net/api/v3/eois/{id} \
--header 'X-API-Key: <api-key>' \
--header 'zivio-tenant-id: <api-key>'
{
"id": "6",
"title": "Test fot API",
"description": "this is a test for api calling",
"status": "open",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"submission_deadline": "2023-11-07T05:31:56Z",
"time_zone": "UTC",
"eoi_matches_count": "4",
"skill_category": {
"id": "1",
"name": "Asset Management",
"slug": "asset-management"
},
"skill_subcategory": {
"id": "3",
"name": "Asset Disposal",
"slug": "asset-disposal"
},
"owner": {
"id": "226",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"vetting_status": "PASSED",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"job": {
"id": "66",
"title": "Project Management - Product Implementation",
"description": "Job description"
},
"eoi_responses": [
{
"id": "10",
"proposal": "A proposal description",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"shortlisted_at": "2023-11-07T05:31:56Z",
"rejected_at": "2023-11-07T05:31:56Z",
"supplier": {
"id": "226",
"name": "Wells International",
"email": "john.doe@example.com",
"vetting_status": "PASSED",
"tax_number": "1234321",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
]
}
Path Parameters
Response
200
*/*
ok
The response is of type object
.
curl --request GET \
--url https://api.zivio.net/api/v3/eois/{id} \
--header 'X-API-Key: <api-key>' \
--header 'zivio-tenant-id: <api-key>'
{
"id": "6",
"title": "Test fot API",
"description": "this is a test for api calling",
"status": "open",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"submission_deadline": "2023-11-07T05:31:56Z",
"time_zone": "UTC",
"eoi_matches_count": "4",
"skill_category": {
"id": "1",
"name": "Asset Management",
"slug": "asset-management"
},
"skill_subcategory": {
"id": "3",
"name": "Asset Disposal",
"slug": "asset-disposal"
},
"owner": {
"id": "226",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"vetting_status": "PASSED",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"job": {
"id": "66",
"title": "Project Management - Product Implementation",
"description": "Job description"
},
"eoi_responses": [
{
"id": "10",
"proposal": "A proposal description",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"shortlisted_at": "2023-11-07T05:31:56Z",
"rejected_at": "2023-11-07T05:31:56Z",
"supplier": {
"id": "226",
"name": "Wells International",
"email": "john.doe@example.com",
"vetting_status": "PASSED",
"tax_number": "1234321",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
]
}