2025-07-29- Action EndPoint: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
Line 14: Line 14:
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
{
{
  "objType": {
  objType: {
   "objectType": "xxxxx",
   objectType: "xxxxx",
   "serviceTag": "yyyyy"
   serviceTag: "yyyyy"
  },
  },
  "objInstanceFull": {
  objInstanceFull: {
   "identifiers": {
   identifiers: {
       //identifiers
       //identifiers
   },
   },
   "fields": {
   fields: {
     //fields
     //fields
   }
   }
  },
  },
  "relationships": [],
  relationships: [],
  "status": "complete",  // or "error"
  status: "complete",  // or "error"
  "errorsFound": []
  errorsFound: []
}
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 09:41, 29 July 2025

Create EndPoint

Create Basic

requestParam

{
 "objectType": "xxxxx",
 "fieldNames": {
  // fields or if have fields of versionedData
 }
}

returnOutput

{
 objType: {
   objectType: "xxxxx",
   serviceTag: "yyyyy"
 },
 objInstanceFull: {
   identifiers: {
      //identifiers
   },
   fields: {
     //fields
   }
 },
 relationships: [],
 status: "complete",  // or "error"
 errorsFound: []
}

Create Node and Relationship

requestParam

{
 "objectType": "xxxx",
 "fieldNames": {
  // fields or if have fields of versionedData
 },
 "relationships": [
   {
     "relType": {
       "serviceTag": "xxxx",
       "relationshipTag": "rel"
     },
     "targetObjType": {
       "serviceTag": "xxxx",
       "objectType": "yyyy"
     },
     "relationshipDirection": "xxxx", // 'from' or 'to'
     "targetIdentifiers": {
       // identifiers
     }
   }
 ]
}

returnOutput

{
 "objectType": "xxxx",
 "fieldNames": {
   // fields or if have versionedData
 },
 "relationships": [
   {
     "relType": {
       "serviceTag": "xxxx",
       "relationshipTag": "rel"
     },
     "targetObjType": {
       "serviceTag": "xxxx",
       "objectType": "yyyy"
     },
     "relationshipDirection": "xxxx", //'from' or 'to'
     "targetIdentifiers": {
       // targetIdentifiers
     }
   }
 ]
}

Update EndPoint

requestParam

{
 "objectType": "xxxxx",
 "objInstanceFull": {
   "identifiers": {
    //identifiers
   },
   "fields": {
    // fields or if have fields of versionedData
   }
 }
}

returnOutput

{
 "returnValues": {
   "objType": {
     "objectType": "xxxxx",
     "serviceTag": "yyyyy"
   },
   "objInstanceFull": {
     "identifiers": {
        //identifiers
     },
     "fields": {
        //fields
     }
   },
   "versionedDataIds": {
    // if send fields of versionedData will return versionedDataIds
  }
 },
 "status":"complete",  // or "error"
 "errorsFound": []
}

Get EndPoint

requestParam

{
  "objectType": "xxxxx",
  "identifiers": {
   //identifiers
  }
}

returnOutput

{
  response: {
   identifiers: {
     //identifiers
   },
   fields: { 
     //fields
    }
   }
 }