프로젝트

일반

사용자정보

Actions

GetProposals » 이력 » 개정판 9

« 뒤로 | 개정판 9/19 (비교(diff)) | 다음 »
이름없음, 2021/06/03 05:21


GetProposals

신규 등록 포함 변경된(활성화, 폐기) 제안서를 조회합니다.

ProposalListRequest

field field description
did String  
command String  
lowerBound String 조회 범위(시작)
upperBound String 조회 범위(끝)
index String 목록 조회 기준(UpdatedAt 만 가능)

ProposalListResponse

field type description
command String  
proposals List<ProposalBase>  

ProposalBase

field type description
status int  
purpose int  
maxIssuable int  
category int[]  
disAllowMultiIssue boolean  
condition String  
content String  
createdAt String  
revokedAt String  
updatedAt String  
deposit String  
duration String  
filter String  
notAfter String  
notBefore String  
owner String  
proposalId String  
ticketValidFrom String  
description String[]  
imageurl String[]  
consumePolicy ProposalConsumePolicy  
rewardPolicy ProposalRewardPolicy  

ProposalConsumePolicy

field type description
type int  
count int  
maxDataCount int  

ProposalRewardPolicy

field type description
type int  
amount int  

Request Example

query {
  getProposals(param: {
    command: "listProposal" 
    index:"UpdatedAt" 
    lowerBound: "2021-06-02T14:40:23+09:00" 
    upperBound: "2021-06-03T00:36:12.148Z" 
    did: "G5rw9qAMbozGxySHkMaztD" 
  }) {
    proposals {
      condition
      proposalId
      purpose
      consumePolicy {
        count
        maxDataCount
        type
      }
      rewardPolicy {
        amount
        type
      }
    }
  }
}

Response Example

{
  "data": {
    "getProposals": {
      "proposals": [
        {
          "condition": "*",
          "proposalId": "orPxmv15e2oSPufT3Tm5ky1rnh4Bh1spR2NVefDnkGCAX6AnBap9UQ3k5QiSU6h5rgjv6ZSwZ5kKrTayqBZ9AYSeRX2pRSaSjLsbgtJ6aaEawfz8b",
          "purpose": 1000,
          "consumePolicy": {
            "count": 1,
            "maxDataCount": 0,
            "type": 2
          },
          "rewardPolicy": {
            "amount": 1000,
            "type": 1
          }
        }
      ]
    }
  }
}

이름없음이(가) 약 4년 전에 변경 · 9 revisions

클립보드 이미지 추가 (최대 크기: 97.7 MB)