API → Actions
- add_to_list (requires an authentication)
- remove_from_list (requires an authentication)
- add_profile_image (requires a post request and an authentication)
add_to_list
Requires an authentication. It will attempt to add the given person to the authenticated user’s list of 43 want to meet (by default), or have met people, and return the added Profiles itself upon success or an error message upon failure.
Arguments:- api_key (required)
- username and password (required for authentication)
- name, or flickr_username, or id of the person to be added to your list
- have_met (optional)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://43people.com/xml/2005/rc#"> <title>Adding "erik" To Your List on 43 People</title> <success>true</success> <message>This person has been added to your list.</message> <PROFILE OBJECT> </feed>
Demo: Not available
remove_from_list
Requires an authentication. It will attempt to remove the given person from the authenticated user’s list of 43 want to meet, or have met people, and return the removed Profile itself upon success or an error message upon failure.
Arguments:- api_key (required)
- username and password (required for authentication)
- name, or flickr_username, or id of the person to be removed from your list
An Example Response:
<?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://43people.com/xml/2005/rc#"> <title>Removing "erik" From Your List on 43 People</title> <success>true</success> <message>This person has been removed from your list.</message> <PROFILE OBJECT> </feed>
Demo: Not available
add_profile_image
Requires a post request and an authentication. This method will upload profile image for the authenticated user (default), or a given Profile if supplied, and returns added Image upon success, or an error message upon failure.
Arguments:- api_key (required)
- username and password (required for authentication)
- image_file image data (required)
- name, or flickr_username, or id of the person on your list for whom the image is for (optional)
- caption image caption (optional)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://43people.com/xml/2005/rc#"> <title>Erik Adding Profile Image For "Steve Jobs" on 43 People</title> <success>true</success> <message>Your image has been successfully saved.</message> <IMAGE OBJECT> </feed>
Demo: Not available