---
title: "Get DealRoom Signers"
method: GET
path: "/api/v1/dealroom/{opportunity_id}"
tags: ["Quote Management"]
---

# Get DealRoom Signers

`GET /api/v1/dealroom/{opportunity_id}`

Retrieves information about who has signed a contract within a DealRoom for a specific opportunity.

## Path parameters

- `opportunity_id` string, required

## Response `200`

Success. Returns the list of signers.

- DealRoomSignersResponse
  - `dealroom_state` string — State of the DealRoom.
  - `buyer_signers` Signer[] — List of signers from the buyer side.
    - `company_name` string — Company name of the signer.
    - `signee_name` string — Name of the signer.
    - `signee_title` string — Title of the signer.
    - `signature_date` string, date-time — Date when the user signed the contract via the DealRoom.
    - `ordinal` integer — The order of the signer in the list of signers.
  - `seller_signers` Signer[] — List of signers from the selling organization side.
    - `company_name` string — Company name of the signer.
    - `signee_name` string — Name of the signer.
    - `signee_title` string — Title of the signer.
    - `signature_date` string, date-time — Date when the user signed the contract via the DealRoom.
    - `ordinal` integer — The order of the signer in the list of signers.

## Other responses

- `400` — Bad Request. No DealRoom instance found for the given opportunity ID.
- `403` — Forbidden. Invalid or missing authentication token.

---

[API](https://skmtc.net/dealhub/apis/quote-api.md) · [All operations](https://skmtc.net/dealhub/apis/quote-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dealhub/quote-api/versions/c30f5b9fbfab/schema)
