delphiAx / Marketplacer SELLER API / Get Refund Requests Updated Since
Back to Collection Items
var
http: TChilkatHttp;
success: Integer;
json: TChilkatJsonObject;
resp: TChilkatHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
http.BasicAuth := 1;
http.Login := '{{username}}';
http.Password := '{{password}}';
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "query": "query GetRefundRequestsUpdatedSince\n($pageSize: Int $endCursor: String $updatedSince: ISO8601DateTime!)\n{\n updatedRefundRequests\n\t(\n\t\tupdatedSince: $updatedSince\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\n\t)\n {\n edges{\n node{\n id\n status\n cashAmountCents\n createdAt\n refundedAt\n updatedAt\n giftCardAmountCents\n recoveredAmountCents\n refundAmountCents\n totalCents\n initiatedBy\n invoice{\n id\n }\n lineItems{\n id\n amountCents\n amountPerItemCents\n onlyRemittance\n quantity\n reason \n }\n } \n }\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n }\n}",
// "variables": "{\n \"pageSize\": 50,\n \"endCursor\": \"\",\n \"updatedSince\": \"2021-08-05\"\n}"
// }
json := TChilkatJsonObject.Create(Self);
json.UpdateString('query','query GetRefundRequestsUpdatedSince' + #10 + '($pageSize: Int $endCursor: String $updatedSince: ISO8601DateTime!)' + #10 + '{' + #10 + ' updatedRefundRequests' + #10 + ' (' + #10 + ' updatedSince: $updatedSince' + #10 + ' first: $pageSize' + #10 + ' after: $endCursor' + #10 + ' ' + #10 + ' )' + #10 + ' {' + #10 + ' edges{' + #10 + ' node{' + #10 + ' id' + #10 + ' status' + #10 + ' cashAmountCents' + #10 + ' createdAt' + #10 + ' refundedAt' + #10 + ' updatedAt' + #10 + ' giftCardAmountCents' + #10 + ' recoveredAmountCents' + #10 + ' refundAmountCents' + #10 + ' totalCents' + #10 + ' initiatedBy' + #10 + ' invoice{' + #10 + ' id' + #10 + ' }' + #10 + ' lineItems{' + #10 + ' id' + #10 + ' amountCents' + #10 + ' amountPerItemCents' + #10 + ' onlyRemittance' + #10 + ' quantity' + #10 + ' reason ' + #10 + ' }' + #10 + ' } ' + #10 + ' }' + #10 + ' pageInfo{' + #10 + ' hasNextPage' + #10 + ' endCursor' + #10 + ' }' + #10 + ' }' + #10 + '}');
json.UpdateString('variables','{' + #10 + ' "pageSize": 50,' + #10 + ' "endCursor": "",' + #10 + ' "updatedSince": "2021-08-05"' + #10 + '}');
http.SetRequestHeader('Content-Type','application/json');
http.SetRequestHeader('MARKETPLACER-API-KEY','{{api_key}}');
resp := TChilkatHttpResponse.Create(Self);
success := http.HttpJson('POST','https://bestfriendbazaar.com/graphql',json.ControlInterface,'application/json',resp.ControlInterface);
if (success = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);
Curl Command
curl -X POST
-u '{{username}}:{{password}}'
-H "MARKETPLACER-API-KEY: {{api_key}}"
-H "Content-Type: application/json"
--data-raw '{"query":"query GetRefundRequestsUpdatedSince\n($pageSize: Int $endCursor: String $updatedSince: ISO8601DateTime!)\n{\n updatedRefundRequests\n\t(\n\t\tupdatedSince: $updatedSince\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\n\t)\n {\n edges{\n node{\n id\n status\n cashAmountCents\n createdAt\n refundedAt\n updatedAt\n giftCardAmountCents\n recoveredAmountCents\n refundAmountCents\n totalCents\n initiatedBy\n invoice{\n id\n }\n lineItems{\n id\n amountCents\n amountPerItemCents\n onlyRemittance\n quantity\n reason \n }\n } \n }\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n }\n}","variables":"{\n \"pageSize\": 50,\n \"endCursor\": \"\",\n \"updatedSince\": \"2021-08-05\"\n}"}'
https://bestfriendbazaar.com/graphql
Postman Collection Item JSON
{
"name": "Get Refund Requests Updated Since",
"request": {
"method": "POST",
"header": [
{
"key": "MARKETPLACER-API-KEY",
"value": "{{api_key}}",
"type": "text"
},
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "graphql",
"graphql": {
"query": "query GetRefundRequestsUpdatedSince\n($pageSize: Int $endCursor: String $updatedSince: ISO8601DateTime!)\n{\n updatedRefundRequests\n\t(\n\t\tupdatedSince: $updatedSince\n\t\tfirst: $pageSize\n\t\tafter: $endCursor\n\t\n\t)\n {\n edges{\n node{\n id\n status\n cashAmountCents\n createdAt\n refundedAt\n updatedAt\n giftCardAmountCents\n recoveredAmountCents\n refundAmountCents\n totalCents\n initiatedBy\n invoice{\n id\n }\n lineItems{\n id\n amountCents\n amountPerItemCents\n onlyRemittance\n quantity\n reason \n }\n } \n }\n\t\tpageInfo{\n\t\t\thasNextPage\n\t\t\tendCursor\n\t\t}\n }\n}",
"variables": "{\n \"pageSize\": 50,\n \"endCursor\": \"\",\n \"updatedSince\": \"2021-08-05\"\n}"
}
},
"url": {
"raw": "{{base_url}}",
"host": [
"{{base_url}}"
],
"path": null
},
"description": null
},
"response": [
]
}