GET
/
public
/
offers
/
{id}
curl -X GET \
 /public/offers/{id} \
 --header "Authorization: Bearer <token>"
{
  "name": "<string>",
  "contactPerson": {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "<string>",
    "avatar": "<string>",
    "phone": "<string>",
    "linkedin": "<string>",
    "position": "<string>",
    "website": "<string>"
  },
  "description": "<string>",
  "sections": [
    "<string>"
  ],
  "offerLineItems": [
    "<string>"
  ],
  "signed": true,
  "canSign": true
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

Offer identifier

Response

200
application/json
Offer resource
name
string
contactPerson
object | null
description
string | null
sections
string[]
offerLineItems
string[]
signed
boolean
canSign
boolean