Dart
Dart
SMSAPI - Create a Contact
See more SMSAPI Examples
Create a ContactChilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
// Implements the following CURL command:
// curl -X POST https://api.smsapi.com/contacts -H "Authorization: Bearer token_api_oauth" \
// -d "phone_number=48500000000&email=bok@smsapi.com&first_name=Name&last_name=Last_name&gender=gender&description=description&city=city&groups=default"
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
final req = CkHttpRequest();
req.httpVerb = 'POST';
req.path = '/contacts';
req.contentType = 'application/x-www-form-urlencoded';
req.addParam('phone_number', '48500000000');
req.addParam('email', 'bok@smsapi.com');
req.addParam('first_name', 'Name');
req.addParam('last_name', 'Last_name');
req.addParam('gender', 'gender');
req.addParam('description', 'description');
req.addParam('city', 'city');
req.addParam('groups', 'default');
req.addHeader('Authorization', 'Bearer token_api_oauth');
final resp = CkHttpResponse();
try {
http.httpReq('https://api.smsapi.com/contacts', req, resp);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
final sbResponseBody = CkStringBuilder();
resp.getBodySb(sbResponseBody);
final jResp = CkJsonObject();
jResp.loadSb(sbResponseBody);
jResp.emitCompact = false;
print('Response Body:');
print(jResp.emit());
final respStatusCode = resp.statusCode;
print('Response Status Code = $respStatusCode');
if (respStatusCode >= 400) {
print('Response Header:');
print(resp.header);
print('Failed.');
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "id": "5b802315a788494a04690d1d",
// "first_name": "string",
// "last_name": "string",
// "phone_number": "48500000000",
// "email": "bok@smsapi.com",
// "gender": "gender",
// "city": "city",
// "date_created": "2018-08-24T17:24:05+02:00",
// "date_updated": "2018-08-24T17:24:05+02:00",
// "description": "description",
// "groups": [
// {
// "id": "59a3ca1fa78849062837cd0c",
// "name": "default",
// "date_created": "2017-08-28T09:45:35+02:00",
// "date_updated": "2017-08-28T09:45:35+02:00",
// "description": "",
// "created_by": "username",
// "idx": null,
// "contact_expire_after": null,
// "contacts_count": null
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
final dateCreated = CkDtObj();
final dateUpdated = CkDtObj();
var name = '';
var createdBy = '';
var idx = '';
var contactExpireAfter = '';
var contactsCount = '';
var id = jResp.stringOf('id');
final firstName = jResp.stringOf('first_name');
final lastName = jResp.stringOf('last_name');
final phoneNumber = jResp.stringOf('phone_number');
final email = jResp.stringOf('email');
final gender = jResp.stringOf('gender');
final city = jResp.stringOf('city');
jResp.dtOf('date_created', false, dateCreated);
jResp.dtOf('date_updated', false, dateUpdated);
var description = jResp.stringOf('description');
var i = 0;
final countI = jResp.sizeOfArray('groups');
while (i < countI) {
jResp.i = i;
id = jResp.stringOf('groups[i].id');
name = jResp.stringOf('groups[i].name');
jResp.dtOf('groups[i].date_created', false, dateCreated);
jResp.dtOf('groups[i].date_updated', false, dateUpdated);
description = jResp.stringOf('groups[i].description');
createdBy = jResp.stringOf('groups[i].created_by');
idx = jResp.stringOf('groups[i].idx');
contactExpireAfter = jResp.stringOf('groups[i].contact_expire_after');
contactsCount = jResp.stringOf('groups[i].contacts_count');
i++;
}
}