Depending on applicable regulations or business limitations, specific API requests may not be available for your use.
Get All Members
This request returns brief information on all the members permissioned to the API user ID making the request, including advisors and clients.
Request URL
Syntax | GET /restapi/members |
---|---|
Example URL | https://api.uat.foliofn.com/restapi/members |
Response Data Fields
Field | Description |
---|---|
loginId | The username of the requested member. |
membershipType | The membership type of the member. |
firstName | The first name of the member. |
lastName | The last name of the member. |
email1 | The primary email address of the member. |
dayTelephone | The daytime phone number of the member. |
tid | The last 4 digits of the social security number of the member. |
dateOfBirth | The member's date of birth. |
memberoid | A unique ID for the member. This field is a long type numeric value generated by the Folio REST service when the member is initially created. This field will not change. |
Response Example
HTTP/1.1 200 OK
X-Powered-By: Servlet/2.5
Server: Sun GlassFish Enterprise Server v2.1.1
Location: https://api.uat.foliofn.com/restapi/members
Link: <https://api.uat.foliofn.com/restapi/members>; rel="POST"; type="application/json"; title="createMember"
Content-Type: application/json
Transfer-Encoding: chunked
Date: Fri, 21 Feb 2014 18:23:54 GMT
[
{
"dateOfBirth" : "1963-03-19T00:00:00.000-05:00",
"dayTelephone" : "1231231234",
"email1" : "johndoe@email.com",
"firstName" : "John",
"lastName" : "Doe",
"loginId" : "johndoe1",
"memberOid" : "123123123123123122",
"membershipType" : "N",
"tid" : "123123123"
},
{
"dateOfBirth" : "1958-08-07T00:00:00.000-05:00",
"dayTelephone" : "1231231234",
"email1" : "johnsmith@email.com",
"firstName" : "John",
"lastName" : "Smith",
"loginId" : "johnsmith1",
"memberOid" : "123123123123123123",
"membershipType" : "N",
"tid" : "123123124"
}
]