Get fulfillment by id

Get a fulfillment by id

Get a fulfillment by Id

GET https://api.venly.market/fulfillments/{id}

Path Parameters

NameTypeDescription

id*

String

Fulfillment id

{
  "success": true,
  "result": {
    "id": "string",
    "type": "REIMBURSEMENT",
    "offerId": "string",
    "txOutOfCustody": "string",
    "amount": 0,
    "status": "QUEUED",
    "creationDate": "2022-03-10T11:13:59.993Z",
    "pricePerItem": 0,
    "buyerId": "string",
    "buyer": {
      "id": "string",
      "nickname": "string"
    },
    "externalBuyerId": "string",
    "buyerWalletAddress": "string"
  }
}

Examples

https://api.venly.market/80a7cb15-e15f-4c2d-8190-3ce4d59bc1f

Response body

{
  "success": true,
  "result": {
    "id": "80a7cb15-e15f-4c2d-8190-3ce4d59bc1fa",
    "type": "PURCHASE",
    "offerId": "42591755-dd33-484b-8eb4-6bbffd9855d8",
    "txOutOfCustody": "0xac42415fdc51bafee50ff68f06e325e8dab30017bd187152411a14841aa4a074",
    "amount": 1,
    "status": "COMPLETED",
    "creationDate": "2022-01-11T09:52:57.844130",
    "pricePerItem": 11,
    "buyerId": "67682a06-bbab-4b2e-a885-76dc4a7130a3",
    "buyer": {
      "id": "67682a06-bbab-4b2e-a885-76dc4a7130a3"
    }
  }
}

Last updated