selectContracts
selectContracts
application/json
Request Body required
item
contractIds int64[]
date date
groupId int64
id int64
name string
Responses
- 200
- 201
- 401
- 403
- 404
OK
*/*
Schema
Example (from schema)
Schema
contractIds int64[]
date date
groupId int64
id int64
name string
{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}
Created
Unauthorized
Forbidden
Not Found
POST /main/group-conventions/contracts/select
Request
Request
curl / cURL
curl -L -X POST '//localhost/main/group-conventions/contracts/select' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}'
python / requests
curl -L -X POST '//localhost/main/group-conventions/contracts/select' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}'
go / native
curl -L -X POST '//localhost/main/group-conventions/contracts/select' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}'
nodejs / axios
curl -L -X POST '//localhost/main/group-conventions/contracts/select' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}'
php / guzzle
curl -L -X POST '//localhost/main/group-conventions/contracts/select' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}'
java / OkHttp
curl -L -X POST '//localhost/main/group-conventions/contracts/select' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"contractIds": [
0
],
"date": "2025-03-31",
"groupId": 0,
"id": 0,
"name": "string"
}'