Read Memory Persona

This example request illustrates how to read a memory persona. You can use this resource to get a single persona.

JSON

Request

GET /platform/memories/memories/AR-1234/personas/PXX-1234
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" : "PXX-1234",
    "extracted" : true,
    "media" : [ {
      "id" : "T123",
      "links" : {
        "media-reference" : {
          "href" : "https://api.familysearch.org/memories/memories/AR-1234/personas/PXX-1234/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/PXX-1234?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"
      } ]
    } ]
  } ],
  "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/PXX-1234
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="PXX-1234">
        <link rel="persona" href="https://api.familysearch.org/platform/memories/memories/AR-1234/personas/PXX-1234?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/PXX-1234/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>
    </person>
    <sourceDescription id="AR-1234">
        <link rel="memory" href="https://api.familysearch.org/platform/memories/memories/AR-1234?flag=fsh"/>
    </sourceDescription>
</fs:familysearch>