Skip to main content
POST
/
proposals
/
{proposal_id}
/
messages
Send Proposal Message
curl --request POST \
  --url https://api.example.com/proposals/{proposal_id}/messages \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "content": "<string>",
  "attachments": [
    {}
  ]
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

proposal_id
string<uuid>
required

Body

application/json

Request to send a message as provider (reply to client).

content
string
required
attachments
Attachments · object[] | null

Response

Successful Response