Update Memory Persona

This example request illustrates how to update or edit a memory persona (tag). To change a tag, post the modified qualifier to this resource and set the new coordinates in the qualifier data.

JSON

Request

POST /platform/memories/memories/AR-1234/personas/PXX-1234
Content-Type: application/x-fs-v1+json
Authorization: Bearer YOUR_ACCESS_TOKEN_HERE{
  "persons" : [ {
    "id" : "PXX-1234",
    "extracted" : true,
    "media" : [ {
      "id" : "T123",
      "description" : "https://familysearch.org/platform/memories/artifacts/132692/description",
      "qualifiers" : [ {
        "value" : ".10,.10,1.00,1.00",
        "name" : "http://gedcomx.org/RectangleRegion"
      } ]
    } ],
    "identifiers" : {
      "http://familysearch.org/v1/MemoryPerson" : [ "12345" ],
      "http://familysearch.org/v1/FamilyTreePerson" : [ "https://familysearch.org/ark:/61903/4:1:MMMM-MMM" ]
    }
  } ]
}

Response

HTTP/1.1 204 No Content
Content-type: text/html
X-processing-time: 3
Vary: Accept,Accept-Language,Accept-Encoding,Expect
Content-length: 0
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

XML

Request

POST /platform/memories/memories/AR-1234/personas/PXX-1234
Content-Type: application/x-fs-v1+xml
Authorization: Bearer YOUR_ACCESS_TOKEN_HERE<?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">
        <media description="https://familysearch.org/platform/memories/artifacts/132692/description" id="T123">
            <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>
    </person>
</fs:familysearch>

Response

HTTP/1.1 204 No Content
Content-type: text/html
X-processing-time: 3
Vary: Accept,Accept-Language,Accept-Encoding,Expect
Content-length: 0
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