GetConnectedObjectsAsync

Get connected objects as an asynchronous operation. Returns (Task<IEnumerable>) Get connected objects as an asynchronous operation. Returns (Task<IEnumerable>)

Find all Base objects connected to the designated Base. It is possible to specify the particular relationship to narrow results. Find all Base objects that are connected to a designated Event Message Data. It is possible to specify the particular relationship to narrow results.

Name Description
target The target.
relation The relation.
target The target.
relation The relation.

Get Connected Objects Async

Example in C#

// Returns: IEnumerable<BaseInfo>
var baseInfo = await client.GetConnectedObjectsAsync(BaseInfo target, String relation);

Get Connected Objects Async

Example in C#

// Returns: IEnumerable<BaseInfo>
var baseInfo = await client.GetConnectedObjectsAsync(EventMessageData target, String relation);

Example in CURL



           curl -X GET \
               https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/people/PERSON.KEY/connections \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' 
            

Example in CURL



           curl -X GET \
               https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/events/EVENT.KEY/connections \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'