Method | GET |
Rel | findsi:actor-targets |
Description | Returns a paged list of Targets, the given Actor has interacted with. |
Required | Description | |
filter | No | A filter to apply on on the result set. Targets can be filtered by their Classification (exact match). |
page_index | No | 0-based index of the requested result set. |
A successful response (HTTP 200) will be a HAL document, containing the following:
Besides the default _self
and curies
links, the following links will be included:
actors | Returns a paged list of Actors the requesting API consumer has logged activities for. |
actor-similars | Returns a list of Actors that are deemed similar to the given Actor. |
actor | Returns the Actor that is the context for this request. |
Type | Description | |
target | Array | Targets that the given Actor has interacted with, at least once. |
None
The API may respond with one of the following errors:
401 | Unauthorized | The Authorization header might be missing or malformed. Alternatively you may have provided an invalid API key. |
A basic, unfiltered request would look something like:
GET /actors/.../targets HTTP/1.1
Host: api.findsi.com
Accept: application/hal+json
Authorization: findsi_api_key apikey="..."
Content-Type: application/json
Cache-Control: no-cache
If all went well, your response will look something like this:
Cache-Control no-cache
Content-Length 5191
Content-Type application/hal+json; charset=utf-8
Date Thu, 11 Sep 2014 15:32:16 GMT
Expires -1
Pragma no-cache
{
"_links": {
"curies": {
"href": "http://www.findsi.com/docs/link-relations/{rel}",
"templated": true,
"name": "findsi"
},
"findsi:actors": {
"href": "/actors"
},
"findsi:actor-similars": {
"href": "/actors/.../similars"
},
"findsi:actor": {
"href": "/actors/..."
},
"self": {
"href": "/actors/.../targets?page_index=0"
}
},
"_embedded": {
"findsi:target": [
{
"Id": "3722387",
"Classification": "article",
"_links": {
"findsi:targets": {
"href": "/targets"
},
"findsi:target-similars": {
"href": "/targets/.../similars/..."
},
"findsi:target-recommendations": {
"href": "/targets/.../recommendations/..."
},
"self": {
"href": "/targets/..."
}
}
},
{
"Id": "3717318",
"Classification": "article",
"_links": {
"findsi:targets": {
"href": "/targets"
},
"findsi:target-similars": {
"href": "/targets/.../similars/..."
},
"findsi:target-recommendations": {
"href": "/targets/.../recommendations/..."
},
"self": {
"href": "/targets/..."
}
}
},
{
"Id": "3717318",
"Classification": "article",
"_links": {
"findsi:targets": {
"href": "/targets"
},
"findsi:target-similars": {
"href": "/targets/.../similars/..."
},
"findsi:target-recommendations": {
"href": "/targets/.../recommendations/..."
},
"self": {
"href": "/targets/..."
}
}
}
]
}
}