EOI Responses
Retrieve an EOI Response 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
EOI Responses
Retrieve an EOI Response by ID
GET
/
eoi_responses
/
{id}
curl --request GET \
--url https://api.zivio.net/api/v3/eoi_responses/{id} \
--header 'X-API-Key: <api-key>' \
--header 'zivio-tenant-id: <api-key>'
{
"id": "6",
"proposal": "proposal for API",
"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",
"eoi": {
"id": "3",
"title": "Example EOI",
"submission_deadline": "2023-11-07T05:31:56Z",
"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"
}
},
"supplier": {
"id": "248",
"name": "Joe Bloggs Ltd",
"email": "joe@bloggs.com",
"vetting_status": "PASSED",
"tax_number": "123456789",
"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/eoi_responses/{id} \
--header 'X-API-Key: <api-key>' \
--header 'zivio-tenant-id: <api-key>'
{
"id": "6",
"proposal": "proposal for API",
"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",
"eoi": {
"id": "3",
"title": "Example EOI",
"submission_deadline": "2023-11-07T05:31:56Z",
"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"
}
},
"supplier": {
"id": "248",
"name": "Joe Bloggs Ltd",
"email": "joe@bloggs.com",
"vetting_status": "PASSED",
"tax_number": "123456789",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}