> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zivio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Offers

> Retrieve a paginated list of offers. 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/offers?filter[status]=pending

# Multiple values (implicit IN)
GET /api/v4/offers?filter[status]=pending,declined

# With explicit operator
GET /api/v4/offers?filter[created_at][gte]=2024-01-01

# Range query
GET /api/v4/offers?filter[budget][between]=1000000,5000000

# Multiple filters (AND)
GET /api/v4/offers?filter[status]=pending&filter[budget][gte]=1000000
```

### Available Attributes

| Attribute | Type | Operators | Permitted Values |
|-----------|------|-----------|------------------|
| accepted_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| additional_terms | string | `eq`, `not_eq`, `in`, `not_in`, `like`, `not_like` | - |
| approved_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| approved_by_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| approver_declined_reason | string | `eq`, `not_eq`, `in`, `not_in`, `like`, `not_like` | - |
| auto_close | boolean | `eq`, `not_eq` | - |
| bid_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| budget | money | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| client_contract_template_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| created_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| created_by_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| declined_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| declined_reason | string | `eq`, `not_eq`, `in`, `not_in`, `like`, `not_like` | - |
| due_on | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| expires_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| rate | money | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| rate_ccy | string | `eq`, `not_eq`, `in`, `not_in`, `like`, `not_like` | - |
| reject_reason | string | `eq`, `not_eq`, `in`, `not_in`, `like`, `not_like` | - |
| skip_acceptance | boolean | `eq`, `not_eq` | - |
| start_date | date | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| status | string | `eq`, `not_eq`, `in`, `not_in` | `pending`, `accepted`, `declined`, `withdrawn`, `expired`, `onboarding`, `generating`, `signature_error`, `sending`, `cancelled`, `draft`, `submitted` |
| submitted_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| supplier_contract_template_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| updated_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`, `between` | - |
| version | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |

### Custom Fields

This resource supports custom field filtering using `cf[key]` syntax:
```
# Equality
GET /api/v4/offers?cf[priority]=high

# With operator
GET /api/v4/offers?cf[department][in]=engineering,design

# Check existence
GET /api/v4/offers?cf[priority][exists]=

# Negation
GET /api/v4/offers?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/offers?or[1][status]=accepted&or[2][status]=pending

# Complex OR (status=accepted AND budget>=1000000) OR (status=pending)
GET /api/v4/offers?or[1][status]=accepted&or[1][budget][gte]=1000000&or[2][status]=pending
```

## Sorting

Use `sort[<attribute>]` to order results. Default direction is ascending.
```
# Ascending (implicit)
GET /api/v4/offers?sort[created_at]=

# Descending
GET /api/v4/offers?sort[created_at]=desc

# Combined with filters
GET /api/v4/offers?filter[status]=pending&sort[created_at]=desc
```



## OpenAPI

````yaml /api-reference/v4/openapi.json get /offers
openapi: 3.1.0
info:
  title: API V4
  version: '4'
  description: >-
    OAuth 2.0 secured API. Obtain an access token using client credentials to
    access protected endpoints. The regional endpoints listed below serve every
    Zivio organisation, so each request — including the token request — must
    carry a `zivio-tenant-id` header identifying yours. Requests without it are
    rejected with a 404 before any token is checked.
  contact:
    name: API Support
    email: support@zivio.com
servers:
  - url: https://api.zivio.net/api/v4
    description: Global API Router
  - url: https://api.eu.zivio.net/api/v4
    description: EU Data Region
  - url: https://api.uk.zivio.net/api/v4
    description: UK Data Region
  - url: https://api.us.zivio.net/api/v4
    description: US Data Region
security:
  - oauth2: []
    tenantId: []
paths:
  /offers:
    get:
      tags:
        - Offers
      summary: List Offers
      description: >-
        Retrieve a paginated list of offers. 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/offers?filter[status]=pending


        # Multiple values (implicit IN)

        GET /api/v4/offers?filter[status]=pending,declined


        # With explicit operator

        GET /api/v4/offers?filter[created_at][gte]=2024-01-01


        # Range query

        GET /api/v4/offers?filter[budget][between]=1000000,5000000


        # Multiple filters (AND)

        GET /api/v4/offers?filter[status]=pending&filter[budget][gte]=1000000

        ```


        ### Available Attributes


        | Attribute | Type | Operators | Permitted Values |

        |-----------|------|-----------|------------------|

        | accepted_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | additional_terms | string | `eq`, `not_eq`, `in`, `not_in`, `like`,
        `not_like` | - |

        | approved_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | approved_by_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`,
        `gte`, `lt`, `lte`, `between` | - |

        | approver_declined_reason | string | `eq`, `not_eq`, `in`, `not_in`,
        `like`, `not_like` | - |

        | auto_close | boolean | `eq`, `not_eq` | - |

        | bid_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`,
        `lte`, `between` | - |

        | budget | money | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`,
        `lte`, `between` | - |

        | client_contract_template_id | integer | `eq`, `not_eq`, `in`,
        `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |

        | created_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | created_by_id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`,
        `lt`, `lte`, `between` | - |

        | declined_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | declined_reason | string | `eq`, `not_eq`, `in`, `not_in`, `like`,
        `not_like` | - |

        | due_on | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | expires_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | id | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`,
        `lte`, `between` | - |

        | rate | money | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`,
        `lte`, `between` | - |

        | rate_ccy | string | `eq`, `not_eq`, `in`, `not_in`, `like`, `not_like`
        | - |

        | reject_reason | string | `eq`, `not_eq`, `in`, `not_in`, `like`,
        `not_like` | - |

        | skip_acceptance | boolean | `eq`, `not_eq` | - |

        | start_date | date | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | status | string | `eq`, `not_eq`, `in`, `not_in` | `pending`,
        `accepted`, `declined`, `withdrawn`, `expired`, `onboarding`,
        `generating`, `signature_error`, `sending`, `cancelled`, `draft`,
        `submitted` |

        | submitted_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | supplier_contract_template_id | integer | `eq`, `not_eq`, `in`,
        `not_in`, `gt`, `gte`, `lt`, `lte`, `between` | - |

        | updated_at | datetime | `eq`, `not_eq`, `gt`, `gte`, `lt`, `lte`,
        `between` | - |

        | version | integer | `eq`, `not_eq`, `in`, `not_in`, `gt`, `gte`, `lt`,
        `lte`, `between` | - |


        ### Custom Fields


        This resource supports custom field filtering using `cf[key]` syntax:

        ```

        # Equality

        GET /api/v4/offers?cf[priority]=high


        # With operator

        GET /api/v4/offers?cf[department][in]=engineering,design


        # Check existence

        GET /api/v4/offers?cf[priority][exists]=


        # Negation

        GET /api/v4/offers?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/offers?or[1][status]=accepted&or[2][status]=pending


        # Complex OR (status=accepted AND budget>=1000000) OR (status=pending)

        GET
        /api/v4/offers?or[1][status]=accepted&or[1][budget][gte]=1000000&or[2][status]=pending

        ```


        ## Sorting


        Use `sort[<attribute>]` to order results. Default direction is
        ascending.

        ```

        # Ascending (implicit)

        GET /api/v4/offers?sort[created_at]=


        # Descending

        GET /api/v4/offers?sort[created_at]=desc


        # Combined with filters

        GET /api/v4/offers?filter[status]=pending&sort[created_at]=desc

        ```
      operationId: getOffers
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            default: 1
          description: Page number for pagination
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            maximum: 100
          description: Number of results per page (max 100)
        - name: filter[<attribute>]
          in: query
          style: deepObject
          explode: true
          schema:
            type: object
          description: >-
            Filterable attributes:


            **integer** (operators: eq, not_eq, in, not_in, gt, gte, lt, lte,
            between): approved_by_id, bid_id, client_contract_template_id,
            created_by_id, id, supplier_contract_template_id, version

            **datetime** (operators: eq, not_eq, gt, gte, lt, lte, between):
            accepted_at, approved_at, created_at, declined_at, due_on,
            expires_at, submitted_at, updated_at

            **string** (operators: eq, not_eq, in, not_in, like, not_like):
            additional_terms, approver_declined_reason, declined_reason,
            rate_ccy, reject_reason, status (one of: pending, accepted,
            declined, withdrawn, expired, onboarding, generating,
            signature_error, sending, cancelled, draft, submitted)

            **boolean** (operators: eq, not_eq): auto_close, skip_acceptance

            **money** (operators: eq, not_eq, in, not_in, gt, gte, lt, lte,
            between): budget, rate

            **date** (operators: eq, not_eq, gt, gte, lt, lte, between):
            start_date


            Note: money values are in minor currency units (e.g. pence for GBP).
            Use 1000000 for £10,000.00.


            Note: `like` is a case-insensitive substring match — pass the bare
            term (filter[title][like]=redesign). Do not add % wildcards; they
            are not needed.
          examples:
            equality:
              summary: Simple equality
              value:
                status: pending
            multiple_values:
              summary: Multiple values (implicit IN)
              value:
                status: pending,declined
            with_operator:
              summary: With explicit operator
              value:
                created_at:
                  gte: '2024-01-01'
            range:
              summary: Range query
              value:
                budget:
                  between: 1000000,5000000
        - name: or[group]
          in: query
          style: deepObject
          explode: true
          schema:
            type: object
          description: >-
            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.
          examples:
            simple_or:
              summary: Simple OR
              value:
                '1':
                  status: accepted
                '2':
                  status: pending
            complex_or:
              summary: Complex OR with AND within groups
              value:
                '1':
                  status: accepted
                  budget:
                    gte: '1000000'
                '2':
                  status: pending
        - name: cf[key]
          in: query
          style: deepObject
          explode: true
          schema:
            type: object
          description: >-
            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 match

            - `cf[department][in]=eng,design` - matches any

            - `cf[priority][not_eq]=low` - not equal

            - `cf[notes][contains]=urgent` - contains text

            - `cf[legacy_field][exists]=` - field exists (value ignored)

            - `cf[deprecated][not_exists]=` - field does not exist
          examples:
            equality:
              summary: Simple equality
              value:
                priority: high
            with_operator:
              summary: With IN operator
              value:
                department:
                  in: eng,design
            exists:
              summary: Check existence
              value:
                priority:
                  exists: ''
        - name: or[group][cf][key]
          in: query
          style: deepObject
          explode: true
          schema:
            type: object
          description: >-
            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`
        - name: sort[<attribute>]
          in: query
          style: deepObject
          explode: true
          schema:
            type: object
          description: >-
            Sort results by attribute. Direction defaults to ascending.


            **Syntax**: `sort[<attribute>]=` (ascending) or
            `sort[<attribute>]=desc` (descending)


            **Sortable attributes**: accepted_at, additional_terms, approved_at,
            approved_by_id, approver_declined_reason, auto_close, bid_id,
            budget, client_contract_template_id, created_at, created_by_id,
            declined_at, declined_reason, due_on, expires_at, id, rate,
            rate_ccy, reject_reason, skip_acceptance, start_date, status,
            submitted_at, supplier_contract_template_id, updated_at, version


            **Examples**:

            - Ascending: `sort[created_at]=` or `sort[created_at]=asc`

            - Descending: `sort[created_at]=desc`
          examples:
            ascending:
              summary: Ascending (implicit)
              value:
                created_at: ''
            descending:
              summary: Descending
              value:
                created_at: desc
      responses:
        '200':
          description: List of offers
          content:
            application/json:
              schema:
                type: object
                properties:
                  offers:
                    type: array
                    items:
                      $ref: '#/components/schemas/Offer'
              examples:
                success:
                  summary: Successful response with offers
                  value:
                    offers:
                      - id: 101
                        version: 101
                        status: accepted
                        rate:
                          cents: 150000
                          currency: GBP
                        budget:
                          cents: 150000
                          currency: GBP
                        additional_terms: Example additional_terms
                        created_by:
                          id: 101
                          first_name: Demo
                          last_name: User
                          email: user1@example.com
                          org_id: 501
                          org_name: Acme Corporation
                        auto_close: true
                        supplier_contract_template: null
                        client_contract_template: null
                        skip_acceptance: true
                        submitted_at: '2024-01-16T10:30:00+00:00'
                        start_date: '2024-03-08'
                        due_on: '2024-01-16'
                        expires_at: '2024-01-16T10:30:00+00:00'
                        accepted_at: '2024-01-16T10:30:00+00:00'
                        approved_at: '2024-01-16T10:30:00+00:00'
                        approved_by:
                          id: 101
                          first_name: Demo
                          last_name: User
                          email: user1@example.com
                          org_id: 501
                          org_name: Acme Corporation
                        approver_declined_reason: Example approver_declined_reason
                        declined_at: '2024-01-16T10:30:00+00:00'
                        declined_reason: Example declined_reason
                        reject_reason: Example reject_reason
                        bid:
                          id: 101
                          rate:
                            cents: 150000
                            currency: GBP
                          version: 101
                          proposal: Example proposal
                          supplier: null
                        milestone_proposals:
                          - id: 101
                            client_details: Example client_details
                            client_due_on: '2024-01-16'
                            client_hours: 101
                            client_rate:
                              cents: 150000
                              currency: GBP
                            client_start_date: '2024-01-16'
                            client_suggested: false
                            client_title: Example client_title
                            tiered_markup_fee:
                              cents: 150000
                              currency: GBP
                            custom_fields:
                              department: Engineering
                              priority: high
                              cost_code: CC-001
                          - id: 102
                            client_details: Example client_details
                            client_due_on: '2024-01-17'
                            client_hours: 102
                            client_rate:
                              cents: 300000
                              currency: GBP
                            client_start_date: '2024-01-17'
                            client_suggested: false
                            client_title: Example client_title
                            tiered_markup_fee:
                              cents: 300000
                              currency: GBP
                            custom_fields:
                              department: Engineering
                              priority: high
                              cost_code: CC-001
                        line_item_proposals:
                          - id: 101
                            name: Acme Corporation
                            manufacturer_name: Example manufacturer_name
                            manufacturer_part_number: Example manufacturer_part_number
                            quantity: '1500.00'
                            price:
                              cents: 150000
                              currency: GBP
                            item_type: service
                            uom: null
                            item_id: 501
                            required: true
                            project_line_item_id: 501
                          - id: 102
                            name: Global Services Ltd
                            manufacturer_name: Example manufacturer_name
                            manufacturer_part_number: Example manufacturer_part_number
                            quantity: '1500.00'
                            price:
                              cents: 300000
                              currency: GBP
                            item_type: item
                            uom: null
                            item_id: 502
                            required: true
                            project_line_item_id: 502
                        admin_custom_fields: null
                        custom_fields:
                          department: Engineering
                          priority: high
                          cost_code: CC-001
                        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
                        version: 102
                        status: declined
                        rate:
                          cents: 300000
                          currency: GBP
                        budget:
                          cents: 300000
                          currency: GBP
                        additional_terms: Example additional_terms
                        created_by:
                          id: 102
                          first_name: Jane
                          last_name: Smith
                          email: user2@example.com
                          org_id: 502
                          org_name: Global Services Ltd
                        auto_close: true
                        supplier_contract_template: null
                        client_contract_template: null
                        skip_acceptance: true
                        submitted_at: '2024-01-17T10:30:00+00:00'
                        start_date: '2024-03-15'
                        due_on: '2024-01-17'
                        expires_at: '2024-01-17T10:30:00+00:00'
                        accepted_at: '2024-01-17T10:30:00+00:00'
                        approved_at: '2024-01-17T10:30:00+00:00'
                        approved_by:
                          id: 102
                          first_name: Jane
                          last_name: Smith
                          email: user2@example.com
                          org_id: 502
                          org_name: Global Services Ltd
                        approver_declined_reason: Example approver_declined_reason
                        declined_at: '2024-01-17T10:30:00+00:00'
                        declined_reason: Example declined_reason
                        reject_reason: Example reject_reason
                        bid:
                          id: 102
                          rate:
                            cents: 300000
                            currency: GBP
                          version: 102
                          proposal: Example proposal
                          supplier: null
                        milestone_proposals:
                          - id: 102
                            client_details: Example client_details
                            client_due_on: '2024-01-17'
                            client_hours: 102
                            client_rate:
                              cents: 300000
                              currency: GBP
                            client_start_date: '2024-01-17'
                            client_suggested: false
                            client_title: Example client_title
                            tiered_markup_fee:
                              cents: 300000
                              currency: GBP
                            custom_fields:
                              department: Engineering
                              priority: high
                              cost_code: CC-001
                          - id: 103
                            client_details: Example client_details
                            client_due_on: '2024-01-18'
                            client_hours: 103
                            client_rate:
                              cents: 450000
                              currency: GBP
                            client_start_date: '2024-01-18'
                            client_suggested: false
                            client_title: Example client_title
                            tiered_markup_fee:
                              cents: 450000
                              currency: GBP
                            custom_fields:
                              department: Engineering
                              priority: high
                              cost_code: CC-001
                        line_item_proposals:
                          - id: 102
                            name: Global Services Ltd
                            manufacturer_name: Example manufacturer_name
                            manufacturer_part_number: Example manufacturer_part_number
                            quantity: '1500.00'
                            price:
                              cents: 300000
                              currency: GBP
                            item_type: item
                            uom: null
                            item_id: 502
                            required: true
                            project_line_item_id: 502
                          - id: 103
                            name: Global Services Ltd
                            manufacturer_name: Example manufacturer_name
                            manufacturer_part_number: Example manufacturer_part_number
                            quantity: '1500.00'
                            price:
                              cents: 450000
                              currency: GBP
                            item_type: service
                            uom: null
                            item_id: 503
                            required: true
                            project_line_item_id: 503
                        admin_custom_fields: null
                        custom_fields:
                          department: Engineering
                          priority: high
                          cost_code: CC-001
                        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
                empty:
                  summary: Empty result set
                  value:
                    offers: []
                filtered:
                  summary: Filtered results
                  description: Results after applying filters
                  value:
                    offers:
                      - id: 101
                        version: 101
                        status: accepted
                        rate:
                          cents: 150000
                          currency: GBP
                        budget:
                          cents: 150000
                          currency: GBP
                        additional_terms: Example additional_terms
                        created_by:
                          id: 101
                          first_name: Demo
                          last_name: User
                          email: user1@example.com
                          org_id: 501
                          org_name: Acme Corporation
                        auto_close: true
                        supplier_contract_template: null
                        client_contract_template: null
                        skip_acceptance: true
                        submitted_at: '2024-01-16T10:30:00+00:00'
                        start_date: '2024-03-08'
                        due_on: '2024-01-16'
                        expires_at: '2024-01-16T10:30:00+00:00'
                        accepted_at: '2024-01-16T10:30:00+00:00'
                        approved_at: '2024-01-16T10:30:00+00:00'
                        approved_by:
                          id: 101
                          first_name: Demo
                          last_name: User
                          email: user1@example.com
                          org_id: 501
                          org_name: Acme Corporation
                        approver_declined_reason: Example approver_declined_reason
                        declined_at: '2024-01-16T10:30:00+00:00'
                        declined_reason: Example declined_reason
                        reject_reason: Example reject_reason
                        bid:
                          id: 101
                          rate:
                            cents: 150000
                            currency: GBP
                          version: 101
                          proposal: Example proposal
                          supplier: null
                        milestone_proposals:
                          - id: 101
                            client_details: Example client_details
                            client_due_on: '2024-01-16'
                            client_hours: 101
                            client_rate:
                              cents: 150000
                              currency: GBP
                            client_start_date: '2024-01-16'
                            client_suggested: false
                            client_title: Example client_title
                            tiered_markup_fee:
                              cents: 150000
                              currency: GBP
                            custom_fields:
                              department: Engineering
                              priority: high
                              cost_code: CC-001
                          - id: 102
                            client_details: Example client_details
                            client_due_on: '2024-01-17'
                            client_hours: 102
                            client_rate:
                              cents: 300000
                              currency: GBP
                            client_start_date: '2024-01-17'
                            client_suggested: false
                            client_title: Example client_title
                            tiered_markup_fee:
                              cents: 300000
                              currency: GBP
                            custom_fields:
                              department: Engineering
                              priority: high
                              cost_code: CC-001
                        line_item_proposals:
                          - id: 101
                            name: Acme Corporation
                            manufacturer_name: Example manufacturer_name
                            manufacturer_part_number: Example manufacturer_part_number
                            quantity: '1500.00'
                            price:
                              cents: 150000
                              currency: GBP
                            item_type: service
                            uom: null
                            item_id: 501
                            required: true
                            project_line_item_id: 501
                          - id: 102
                            name: Global Services Ltd
                            manufacturer_name: Example manufacturer_name
                            manufacturer_part_number: Example manufacturer_part_number
                            quantity: '1500.00'
                            price:
                              cents: 300000
                              currency: GBP
                            item_type: item
                            uom: null
                            item_id: 502
                            required: true
                            project_line_item_id: 502
                        admin_custom_fields: null
                        custom_fields:
                          department: Engineering
                          priority: high
                          cost_code: CC-001
                        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
        '401':
          description: >-
            Unauthorized - the access token is missing, expired, revoked or
            malformed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: invalid_token
                error_description: >-
                  The access token provided is expired, revoked, malformed, or
                  invalid for other reasons
        '403':
          description: Forbidden - insufficient scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: insufficient_scope
                error_description: >-
                  The request requires higher privileges than provided by the
                  access token
                required_scope: offers:read
                provided_scopes:
                  - welcome:read
        '422':
          description: Invalid filter or sort parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                invalid_attribute:
                  summary: Unknown filter attribute
                  value:
                    error: 'Invalid filter attribute: unknown_field'
                invalid_operator:
                  summary: Invalid operator for type
                  value:
                    error: Operator 'like' is not valid for integer type
                invalid_value:
                  summary: Invalid value format
                  value:
                    error: 'Invalid date format for created_at: not-a-date'
                invalid_sort_attribute:
                  summary: Unknown sort attribute
                  value:
                    error: 'Invalid sort attribute: unknown_field'
                invalid_sort_direction:
                  summary: Invalid sort direction
                  value:
                    error: Invalid sort direction 'random'. Must be 'asc' or 'desc'
      security:
        - oauth2:
            - offers:read
          tenantId: []
components:
  schemas:
    Offer:
      type: object
      properties:
        id:
          type: integer
        version:
          type: integer
        status:
          type: string
          enum:
            - pending
            - accepted
            - declined
            - withdrawn
            - expired
            - onboarding
            - generating
            - signature_error
            - sending
            - cancelled
            - draft
            - submitted
          example: pending
        rate:
          $ref: '#/components/schemas/Money'
        budget:
          $ref: '#/components/schemas/Money'
        additional_terms:
          type: string
        created_by:
          oneOf:
            - $ref: '#/components/schemas/EmbeddedUser'
            - type: 'null'
        auto_close:
          type: boolean
          example: true
        supplier_contract_template:
          type: string
        client_contract_template:
          type: string
        skip_acceptance:
          type: boolean
          example: true
        submitted_at:
          type: string
        start_date:
          type: string
        due_on:
          type: string
        expires_at:
          type: string
        accepted_at:
          type: string
        approved_at:
          type: string
        approved_by:
          oneOf:
            - $ref: '#/components/schemas/EmbeddedUser'
            - type: 'null'
        approver_declined_reason:
          type: string
        declined_at:
          type: string
        declined_reason:
          type: string
        reject_reason:
          type: string
        bid:
          oneOf:
            - $ref: '#/components/schemas/EmbeddedBid'
            - type: 'null'
        milestone_proposals:
          type: array
          items:
            $ref: '#/components/schemas/EmbeddedMilestoneProposal'
        line_item_proposals:
          type: array
          items:
            $ref: '#/components/schemas/EmbeddedLineItemProposal'
        admin_custom_fields:
          type: object
          additionalProperties:
            type: string
          description: Key-value pairs of custom field data
        custom_fields:
          type: object
          additionalProperties:
            type: string
          description: Key-value pairs of custom field data
        created_at:
          type: string
        updated_at:
          type: string
        project:
          oneOf:
            - $ref: '#/components/schemas/EmbeddedProject'
            - type: 'null'
    Error:
      type: object
      description: Error envelope returned by every non-2xx V4 response
      properties:
        error:
          type: string
          example: insufficient_scope
        error_description:
          type: string
        message:
          type: string
        details:
          type: object
          additionalProperties: true
        required_scope:
          type: string
          example: projects:read
        provided_scopes:
          type: array
          items:
            type: string
    Money:
      type: object
      properties:
        cents:
          type: integer
          example: 150000
        currency:
          type: string
          example: GBP
    EmbeddedUser:
      type: object
      properties:
        id:
          type: integer
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
        org_id:
          type: integer
        org_name:
          type: string
    EmbeddedBid:
      type: object
      properties:
        id:
          type: integer
        rate:
          $ref: '#/components/schemas/Money'
        version:
          type: integer
        proposal:
          type: string
        supplier:
          type: string
    EmbeddedMilestoneProposal:
      type: object
      properties:
        id:
          type: integer
        client_details:
          type: string
        client_due_on:
          type: string
        client_hours:
          type: integer
        client_rate:
          $ref: '#/components/schemas/Money'
        client_start_date:
          type: string
        client_suggested:
          type: boolean
          example: true
        client_title:
          type: string
        tiered_markup_fee:
          $ref: '#/components/schemas/Money'
        custom_fields:
          type: object
          additionalProperties:
            type: string
          description: Key-value pairs of custom field data
    EmbeddedLineItemProposal:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        manufacturer_name:
          type: string
        manufacturer_part_number:
          type: string
        quantity:
          type: string
        price:
          $ref: '#/components/schemas/Money'
        item_type:
          type: string
          enum:
            - item
            - service
          example: item
        uom:
          type: string
        item_id:
          type: integer
        required:
          type: boolean
          example: true
        project_line_item_id:
          type: integer
    EmbeddedProject:
      type: object
      properties:
        id:
          type: integer
        title:
          type: string
        description:
          type: string
  securitySchemes:
    oauth2:
      type: oauth2
      description: >-
        OAuth 2.0 client credentials. The access token from POST /oauth/token is
        sent as a bearer token. Request only the scopes you need.
      flows:
        clientCredentials:
          tokenUrl: https://api.zivio.net/api/v4/oauth/token
          scopes:
            bank_accounts:read: Read bank account details on suppliers and the org.
            catalogs:read: Read catalog items.
            cost_centers:read: Read cost center records.
            eoi_responses:read: Read responses to expressions of interest.
            eois:read: Read expressions of interest.
            offers:read: Read offers for projects.
            org_units:read: Read your organization unit hierarchy.
            org_users:read: Read members of your organization.
            resources:read: Read resource (worker) records.
            sales_invoices:read: Read invoices issued to clients.
            sales_milestones:read: Read milestones on sales engagements.
            skill_categories:read: Read the skill category taxonomy.
            skill_taxonomies:read: Read skill taxonomy structure.
            skills:read: Read individual skills.
            supplier_documents:read: Read documents uploaded by suppliers.
            supplier_lists:read: Read curated lists of suppliers.
            supplier_users:read: Read users belonging to supplier organizations.
            tax_types:read: Read configured tax types.
            users:read: Read user profiles.
            variation_orders:read: Read variation orders on projects.
            welcome:read: 'Required: confirms your identity to the application.'
            bid_evaluations:read: >-
              Read evaluation scorecards for bids, including criterion scores
              and quality, cost and total scores.
            bid_evaluations:write: >-
              Score bids against a project's quality criteria and override
              calculated cost scores.
            bids:read: Read bids submitted on projects.
            bids:write: >-
              Shortlist, select, eliminate and reinstate bids submitted on
              projects.
            invoices:read: Read invoices on projects.
            invoices:write: Create and update invoices.
            notes:read: Read notes on projects and EOIs.
            notes:write: Create and update notes on projects and EOIs.
            project_approvals:read: Read project approval workflows.
            project_approvals:write: Create and update project approval workflows.
            project_conversations:read: Read messages exchanged with suppliers on a project.
            project_conversations:write: Send messages to suppliers on a project.
            project_invitations:read: Read supplier invitations on projects.
            project_invitations:write: Invite suppliers to bid on projects.
            project_questions:read: Read supplier clarification questions on projects.
            project_questions:write: Answer and approve supplier clarification questions.
            projects:read: Read projects.
            projects:write: Create and update projects.
            milestones:read: Read milestones on projects.
            milestones:write: Create and update milestones.
            orgs:read: Read organization records.
            orgs:write: Create and update organization records.
            purchase_orders:read: Read purchase orders.
            purchase_orders:write: Create and update purchase orders.
            reviews:read: Read reviews left on suppliers.
            reviews:write: Create and update reviews.
            suppliers:read: Read supplier profiles.
            suppliers:write: Create and update supplier profiles.
            raw_scorecard_entries:write: Create and update raw scorecard entries.
            raw_scorecard_entries:read: Read raw scorecard entries.
            tasks:read: >-
              Read the acting user's task queue, including outstanding approvals
              and items to review.
            tasks:write: Complete and dismiss tasks in the acting user's task queue.
            act_as_user: >-
              Make requests as another user within the token holder's delegation
              boundary.
    tenantId:
      type: apiKey
      name: zivio-tenant-id
      in: header
      description: >-
        Your Zivio organisation identifier. The regional API endpoints serve
        every Zivio organisation, so each request must identify yours.

````