Chilkat Online Tools

Objective-C / APPIA API / FETCH ESCROWS

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <CkoHttpResponse.h>

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "trans_amount": 3000,
//   "trans_name": "mobile phone",
//   "details": "buying and selling"
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateInt: @"trans_amount" value: [NSNumber numberWithInt: 3000]];
[json UpdateString: @"trans_name" value: @"mobile phone"];
[json UpdateString: @"details" value: @"buying and selling"];

// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];

CkoHttpResponse *resp = [http PTextSb: @"GET" url: @"https://domain.com/escrow/" textData: sbRequestBody charset: @"utf-8" contentType: @"application/json" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-d '{
    "trans_amount": 3000,
    "trans_name": "mobile phone",
    "details": "buying and selling"
}'
https://domain.com/escrow/

Postman Collection Item JSON

{
  "name": "FETCH ESCROWS",
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{auth}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"trans_amount\": 3000,\n    \"trans_name\": \"mobile phone\",\n    \"details\": \"buying and selling\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{url}}/escrow/",
      "host": [
        "{{url}}"
      ],
      "path": [
        "escrow",
        ""
      ]
    }
  },
  "response": [
  ]
}