DataFlex
DataFlex
MemberMouse -- getMember API Call
See more HTTP Misc Examples
Demonstrates how to use the getMember API call is used to retrieve information about an existing member's account.See MemberMouse getMember API call for more information.
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Variant vReq
Handle hoReq
Handle hoHttp
Variant vResp
Handle hoResp
Handle hoJson
Integer i
Integer iNumBundles
String sTemp1
Integer iTemp1
Move False To iSuccess
// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Build the POST request to get a member's data.
Get Create (RefClass(cComChilkatHttpRequest)) To hoReq
If (Not(IsComObjectCreated(hoReq))) Begin
Send CreateComObject of hoReq
End
// If your particular API URL is "https://mydomain.com/wp-content/plugins/membermouse/api/request.php",
// then the Path part of the URL is "/wp-content/plugins/membermouse/api/request.php",
// and the Domain part of the URL is "mydomain.com".
// If "https" is used, then the port is 443 (not 80).
Set ComHttpVerb Of hoReq To "POST"
// Use the Path part of your API_URL with "?q=/getMember".
// The command, such as /getMember, /createMember, etc. goes in the Path.
// The remainder of the POST arguments are query params that go in the body of the request.
// (Do not put the apikey and apisecret in the Path because the secret will be exposed.
// You want the confidential information to be in the body of the request.)
Set ComPath Of hoReq To "/wp-content/plugins/membermouse/api/request.php?q=/getMember"
Set ComContentType Of hoReq To "application/x-www-form-urlencoded"
// Add the query params.
// (Use your particular values in place of "MEMBERMOUSE_...")
Send ComAddParam To hoReq "apikey" "MEMBERMOUSE_API_KEY"
Send ComAddParam To hoReq "apisecret" "MEMBERMOUSE_API_SECRET"
Send ComAddParam To hoReq "email" "some_member@somewhere.com"
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Use the Domain part of your API URL here:
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
If (Not(IsComObjectCreated(hoResp))) Begin
Send CreateComObject of hoResp
End
Get pvComObject of hoReq to vReq
Get pvComObject of hoResp to vResp
Get ComHttpSReq Of hoHttp "mydomain.com" 443 True vReq vResp To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComBodyStr Of hoResp To sTemp1
Get ComLoad Of hoJson sTemp1 To iSuccess
Set ComEmitCompact Of hoJson To False
// A sample JSON response is shown below..
Get ComEmit Of hoJson To sTemp1
Showln sTemp1
Get ComStatusCode Of hoResp To iTemp1
Showln "Response Status Code: " iTemp1
// A response code of 200 is success.
Get ComStatusCode Of hoResp To iTemp1
If (iTemp1 = 200) Begin
// Show a few values from the JSON..
Get ComStringOf Of hoJson "response_data.first_name" To sTemp1
Showln "first_name: " sTemp1
Get ComStringOf Of hoJson "response_data.last_name" To sTemp1
Showln "last_name: " sTemp1
// Iterate over the bundles.
Move 0 To i
Get ComSizeOfArray Of hoJson "response_data.bundles" To iNumBundles
While (i < iNumBundles)
Set ComI Of hoJson To i
Get ComStringOf Of hoJson "response_data.bundles[i].name" To sTemp1
Showln "Bundle: " sTemp1
Move (i + 1) To i
Loop
End
// ----------------------------------------------------
// Sample JSON response for /getMember
// ----------------------------------------------------
// {
// "response_code": "200",
// "response_message": "",
// "response_data": {
// "member_id": 59,
// "first_name": "Jim",
// "last_name": "Smith",
// "is_complimentary": "false",
// "registered": "2003-08-08 00:00:00",
// "cancellation_date": "",
// "last_logged_in": "2017-04-28 16:26:06",
// "last_updated": "2017-04-28 16:26:06",
// "days_as_member": 5013,
// "status": "1",
// "status_name": "Active",
// "membership_level": "12",
// "membership_level_name": "Expert Instructor",
// "username": "JSmith",
// "email": "some_member@somewhere.com",
// "password": null,
// "phone": "(618) 555-5555",
// "billing_address": "555 Shady Lane",
// "billing_city": "Wheaton",
// "billing_state": "IL",
// "billing_zip": "60187",
// "billing_country": "United States",
// "shipping_address": "555 Shady Lane",
// "shipping_city": "Wheaton",
// "shipping_state": "IL",
// "shipping_zip": "60187",
// "shipping_country": "United States",
// "bundles": [
// {
// "id": "6",
// "name": "ABC Bundle",
// "is_complimentary": "false",
// "days_with_bundle": 2758,
// "status": "1",
// "status_name": "Active",
// "date_added": "2009-10-10 00:00:00",
// "last_updated": "2017-03-26 13:00:30"
// },
// {
// "id": "8",
// "name": "XZ 2.0 Software License",
// "is_complimentary": "false",
// "days_with_bundle": 2758,
// "status": "1",
// "status_name": "Active",
// "date_added": "2009-10-10 00:00:00",
// "last_updated": "2017-03-26 13:00:30"
// }
// ],
// "custom_fields": [
// {
// "id": 1,
// "name": "Class Location:",
// "value": ""
// },
// {
// "id": 2,
// "name": "Company",
// "value": "Acme Interiors Inc"
// },
// {
// "id": 3,
// "name": "Referred by:",
// "value": ""
// },
// {
// "id": 4,
// "name": "Sound Analysis Equipment",
// "value": "AudioTools Sound Analyzer with HAA multi mic Kit"
// },
// {
// "id": 5,
// "name": "HAA Member Number",
// "value": "22222222"
// },
// {
// "id": 6,
// "name": "Alumni Class Dates",
// "value": ""
// }
// ]
// }
// }
//
End_Procedure