Read Memory Personas
This example request illustrates how to read the personas of a memory This allows you to read a list of all persons that have been tagged in a memory.
JSON
Request
GET /platform/memories/memories/AR-1234/personas
Accept: application/x-fs-v1+json
Authorization: Bearer YOUR_ACCESS_TOKEN_HERE
Response
HTTP/1.1 200 OK
Content-type: application/x-fs-v1+json
X-processing-time: 3
Vary: Accept,Accept-Language,Accept-Encoding,Expect
Content-location: /platform/memories/memories/AR-1234/personas
Date: Sun, 03 Apr 1836 10:00:00 GMT-5
Cache-control: no-cache, no-store, no-transform, must-revalidate, max-age=0
Transfer-encoding: chunked{
"persons" : [ {
"id" : "123",
"extracted" : true,
"media" : [ {
"id" : "T123",
"links" : {
"media-reference" : {
"href" : "https://api.familysearch.org/memories/memories/AR-1234/personas/123/artifact-references/T123?flag=fsh"
}
},
"description" : "https://familysearch.org/platform/memories/artifacts/132692/description",
"qualifiers" : [ {
"value" : ".10,.10,1.00,1.00",
"name" : "http://gedcomx.org/RectangleRegion"
} ]
} ],
"links" : {
"persona" : {
"href" : "https://api.familysearch.org/platform/memories/memories/AR-1234/personas/123?flag=fsh"
}
},
"identifiers" : {
"http://familysearch.org/v1/MemoryPerson" : [ "12345" ],
"http://familysearch.org/v1/FamilyTreePerson" : [ "https://familysearch.org/ark:/61903/4:1:MMMM-MMM" ]
},
"names" : [ {
"nameForms" : [ {
"fullText" : "Anastasia Aleksandrova"
} ]
} ],
"display" : {
"name" : "Anastasia Aleksandrova"
}
} ],
"sourceDescriptions" : [ {
"id" : "AR-1234",
"links" : {
"memory" : {
"href" : "https://api.familysearch.org/platform/memories/memories/AR-1234?flag=fsh"
}
}
} ]
}
XML
Request
GET /platform/memories/memories/AR-1234/personas
Accept: application/x-fs-v1+xml
Authorization: Bearer YOUR_ACCESS_TOKEN_HERE
Response
HTTP/1.1 200 OK
Content-type: application/x-fs-v1+xml
X-processing-time: 3
Vary: Accept,Accept-Language,Accept-Encoding,Expect
Content-location: /platform/memories/memories/AR-1234/personas
Date: Sun, 03 Apr 1836 10:00:00 GMT-5
Cache-control: no-cache, no-store, no-transform, must-revalidate, max-age=0
Transfer-encoding: chunked<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<fs:familysearch xmlns:fs="http://familysearch.org/v1/" xmlns="http://gedcomx.org/v1/" xmlns:atom="http://www.w3.org/2005/Atom">
<person extracted="true" id="123">
<link rel="persona" href="https://api.familysearch.org/platform/memories/memories/AR-1234/personas/123?flag=fsh"/>
<media description="https://familysearch.org/platform/memories/artifacts/132692/description" id="T123">
<link rel="media-reference" href="https://api.familysearch.org/memories/memories/AR-1234/personas/123/artifact-references/T123?flag=fsh"/>
<qualifier name="http://gedcomx.org/RectangleRegion">.10,.10,1.00,1.00</qualifier>
</media>
<identifier type="http://familysearch.org/v1/MemoryPerson">12345</identifier>
<identifier type="http://familysearch.org/v1/FamilyTreePerson">https://familysearch.org/ark:/61903/4:1:MMMM-MMM</identifier>
<name>
<nameForm>
<fullText>Anastasia Aleksandrova</fullText>
</nameForm>
</name>
<display>
<name>Anastasia Aleksandrova</name>
</display>
</person>
<sourceDescription id="AR-1234">
<link rel="memory" href="https://api.familysearch.org/platform/memories/memories/AR-1234?flag=fsh"/>
</sourceDescription>
</fs:familysearch>
Updated 5 days ago