Skip to main content
GET
/
v1
/
settlement
정산 목록
curl --request GET \
  --url https://openapi.pluuug.com/v1/settlement \
  --header 'X-API-Key: <api-key>'
{
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": 123,
      "title": "<string>",
      "status": "C",
      "amount": 1,
      "additionalAmount": 1,
      "vat": 1,
      "typeAlias": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "contract": {
        "id": 123,
        "title": "<string>",
        "amount": 123,
        "type": "I",
        "status": "P",
        "startDate": "2023-12-25",
        "endDate": "2023-12-25"
      },
      "dueDate": "2023-12-25",
      "settledDate": "2023-12-25"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Query Parameters

contract_id
string
created_end
string<date>

생성일 종료 (YYYY-MM-DD)

created_start
string<date>

생성일 시작 (YYYY-MM-DD)

cursor
string

Pagination을 위한 커서

due_date_end
string<date>

정산 예정일 종료 (YYYY-MM-DD)

due_date_start
string<date>

정산 예정일 시작 (YYYY-MM-DD)

page_size
integer

한번에 조회할 데이터의 개수 (limit)

settled_date_end
string<date>

정산 완료일 종료 (YYYY-MM-DD)

settled_date_start
string<date>

정산 완료일 시작 (YYYY-MM-DD)

Response

200 - application/json
next
string | null
previous
string | null
results
object[]