Get links by id

Authenticate every request with Authorization: Bearer <token> — a JWT or API token.

Download OpenAPI JSON
Overview
GET/persona-memory/links/{id}persona_memory

Get links by id

Fetch a record from links by id.

Auth: bearerAuth — calls run as the authenticated user.

Parameters
  • idpathstring
Responses
200

links

  • idstring
  • ecosystemIdstring
  • customerIdstring
  • srcIdstring
  • dstIdstring
  • relationstring
  • createdAtstring
  • updatedAtstring
  • deletedAtstring?
  • syncVersioninteger
  • syncStampedAtstring?
  • syncTxidinteger
Example
{
  "id": "string",
  "ecosystemId": "string",
  "customerId": "string",
  "srcId": "string",
  "dstId": "string",
  "relation": "string",
  "createdAt": "string",
  "updatedAt": "string",
  "deletedAt": "string",
  "syncVersion": 0,
  "syncStampedAt": "string",
  "syncTxid": 0
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
404

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/persona-memory/links/{id}" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/persona-memory/links/{id}", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();