CorebanqCorebanq Developer Docs
Personasv1Persona Links

Create link

Create a link between a persona and another entity

POST/v1/persona-links

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/persona-links" \  -H "Content-Type: application/json" \  -d '{    "persona_id": "84321d19-6cb7-45af-a8d3-0bb38b11a872",    "rec_id": "0ba687c4-349e-490d-969f-fd374e232d42"  }'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "persona_id": "84321d19-6cb7-45af-a8d3-0bb38b11a872",
  "rec_id": "0ba687c4-349e-490d-969f-fd374e232d42",
  "rec_type_name": "string",
  "active": true,
  "metadata": {},
  "created_at": "2019-08-24T14:15:22Z",
  "created_by": "ee824cad-d7a6-4f48-87dc-e8461a9201c4"
}