GiftCardFulfillments

giftCardFulfillments

list GiftCardFulfillment

get
Authorizations
Query parameters
pageIndexnumber · int32Optional

Page number to return, starting with zero

pageSizenumber · int32Optional

Number of records per page (default 100)

orderByFieldstringOptional

Field name to order by (or comma separated names)

pageNoLimitstringOptional

If true don't limit page size (no pagination)

dependentLevelsnumber · int32Optional

Levels of dependent child records to include

fulfillmentIdstringOptional
typeEnumIdstringOptional
merchantIdstringOptional
partyIdstringOptional
orderIdstringOptional
orderItemSeqIdstringOptional
surveyResponseIdstringOptional
cardNumberstringOptional
pinNumberstringOptional
amountnumberOptional
responseCodestringOptional
referenceNumstringOptional
authCodestringOptional
fulfillmentDatestring · date-timeOptional
lastUpdatedStampstring · date-timeOptional
Responses
200
Success
application/json
get
GET /rest/s1/poorti/giftCardFulfillments HTTP/1.1
Host: dev-maarg.hotwax.io
Authorization: Basic username:password
Accept: */*
[
  {
    "_entity": "org.apache.ofbiz.accounting.payment.GiftCardFulfillment",
    "fulfillmentId": "text",
    "typeEnumId": "text",
    "merchantId": "text",
    "partyId": "text",
    "orderId": "text",
    "orderItemSeqId": "text",
    "surveyResponseId": "text",
    "cardNumber": "text",
    "pinNumber": "text",
    "amount": 1,
    "responseCode": "text",
    "referenceNum": "text",
    "authCode": "text",
    "fulfillmentDate": "2025-07-12T07:44:08.327Z",
    "lastUpdatedStamp": "2025-07-12T07:44:08.327Z"
  }
]

create GiftCardFulfillment

post
Authorizations
Body
_entitystringOptionalDefault: org.apache.ofbiz.accounting.payment.GiftCardFulfillment
fulfillmentIdstringOptional
typeEnumIdstringOptional
merchantIdstringOptional
partyIdstringOptional
orderIdstringOptional
orderItemSeqIdstringOptional
surveyResponseIdstringOptional
cardNumberstringOptional
pinNumberstringOptional
amountnumberOptional
responseCodestringOptional
referenceNumstringOptional
authCodestringOptional
fulfillmentDatestring · date-timeOptional
lastUpdatedStampstring · date-timeOptional
Responses
200
Success
application/json
post
POST /rest/s1/poorti/giftCardFulfillments HTTP/1.1
Host: dev-maarg.hotwax.io
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 419

{
  "_entity": "org.apache.ofbiz.accounting.payment.GiftCardFulfillment",
  "fulfillmentId": "text",
  "typeEnumId": "text",
  "merchantId": "text",
  "partyId": "text",
  "orderId": "text",
  "orderItemSeqId": "text",
  "surveyResponseId": "text",
  "cardNumber": "text",
  "pinNumber": "text",
  "amount": 1,
  "responseCode": "text",
  "referenceNum": "text",
  "authCode": "text",
  "fulfillmentDate": "2025-07-12T07:44:08.327Z",
  "lastUpdatedStamp": "2025-07-12T07:44:08.327Z"
}
{
  "_entity": "org.apache.ofbiz.accounting.payment.GiftCardFulfillment.PK",
  "fulfillmentId": "text"
}

Was this helpful?