Select a Platform
- Home
- Quick Overview
- App Manager
- SDKs
- Features
- REST API
- API Intro
- App Authentication
- Application Data
- Custom Auth
- Custom Data
- Events
- Events Intro
- Event Add
- Event Get
- Event Update
- Event Comment Add
- Event Comment Delete
- Event Comments Get
- Event Comment Update
- Event Participant Invite
- Event Participants Invite
- Event Participants Get
- Event Participant Delete
- Event Request Invitation
- Event RSVP
- Events Search
- Events Search by Person ID
- Event AppData Add
- Event AppData Delete
- Event AppData Get
- Event AppData Get All
- Event AppData Update
- Friends
- GeoCode
- Locations
- Notifications
- Persons
- Definitions
- Enums
Custom Data Get by ID
Description
Returns the specified Custom Data record from your Application data storage.
Endpoints
https://service.proxomo.com/v09/json/customdata/table/{tableName}/{CustomDataID}
https://service.proxomo.com/v09/xml/customdata/table/{tableName}/{CustomDataID}
HTTP Method
GET
URL Parameters
| Name | Data Type | Required? | Notes |
|---|---|---|---|
| ID | String | Yes | Unique identifier of the Custom Data record requested. |
Errors
404 (Not Found) No Record Found with the specified ID and Table Name.
Returns
The requested Custom Data record.
JSON Sample
Request:
GET: https: //service.proxomo.com/v09/json/customdata/table/CUSTOMDATA/jNWgtxnyORhjrdKu
Response:
JSON GET Result:
JSON GET Result:
{
"dislikes": "code",
"foo": "unit testing custom data",
"ID": "jNWgtxnyORhjrdKu",
"likes": "faster",
"TableName": "CUSTOMDATA",
"Timestamp": "\/Date(1330397209046)/"
}
"dislikes": "code",
"foo": "unit testing custom data",
"ID": "jNWgtxnyORhjrdKu",
"likes": "faster",
"TableName": "CUSTOMDATA",
"Timestamp": "\/Date(1330397209046)/"
}
iOS Custom Data Get by ID
Examples
[myCustomData Get:_apiContext];
