Перейти к основному содержимому

Создать комментарий в паевом контракте

Метод создает комментарий в паевом контракте.

Path Parameters
    contractId int64 required

    contractId

Request Body required

requestData

    body string
Responses

OK


Schema

    integer

POST /main/share-contracts/:contractId/comments

Request

Base URL
//localhost
contractId — path required
Body required
{
"body": "string"
}
curl / cURL
curl -L -X POST '//localhost/main/share-contracts/:contractId/comments' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"body": "string"
}'