v8

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2020-12-094615.1 KB
chunks

Create chunk

Create a chunk object

post/chunks

Request body

ilaIdstring
tokenstring
cidstring

Example request

{
  "ilaId": "123asd",
  "token": "WXYUFOmgDdoniZatfaMTa4Ov-An98v2-4668x5fXOoLZS",
  "cid": "email",
  "def": {
    "domainId": "5d3031a20cbe7c00115c7d8f",
    "schemaUri": "address"
  },
  "payload": {
    "firstName": "John",
    "lastName": "Doe",
    "email": "doe@mail.com"
  }
}

Response

metaobject

Example response

{
  "data": {
    "_id": "5d400671657ee84fd82470e9",
    "ilaId": "123asd",
    "cid": "email",
    "payload": {
      "firstName": "John",
      "lastName": "Doe",
      "email": "doe@mail.com"
    },
    "def": {
      "domainId": "5d3031a20cbe7c00115c7d8f",
      "schemaUri": "address"
    },
    "expireAt": "2019-07-30T09:59:41.056Z",
    "valid": true
  }
}