Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Developers can retrieve master data through the YOUnite API.  The differences between YOUnite Data Store and federated  require different access patterns.

...

TODO fix callbackURL

POST http://openmdm.dev.ccctechcenter.org/api/drs/da53c1c5-945c-42fb-821f-77ea6e20302c/assembler

Code Block
languagejs
titleRequest Payload
{
	"callbackUrl": "https://openmdm.dev.ccctechcenter.org/openmdm-metadata/6c5a754b-6ce0-4871-8dec-d39e255eccc3/drs/da53c1c5-945c-42fb-821f-77ea6e20302c/assembler",
	"zoneUuid": "6c5a754b-6ce0-4871-8dec-d39e255eccc3",
	"timeout": 10,
	"notificationRegistrationType": "WEB_SOCKET"
}

TODO response


Callback Payload

The data is delivered in the request method body specified by notificationRegistrationType and the callbackUrl specified:

...

TODO the metadata for the request can be retrieved...TODO add example content

Code Block
languagejs
titleMetadata Payload
{
    "uuid": "a9e49f65-97ad-45e3-94ac-9bc771b7fcec",
    "drUuid": "da53c1c5-945c-42fb-821f-77ea6e20302c",
    "status": "RESPONSE_SENT",
    "requestedProperties": [
        "zip",
        "lastName",
        "address",
        "gender",
        "city",
        "lastVisit",
        "birthDate",
        "firstName",
        "phone",
        "customerId",
        "serviceRep",
        "state",
        "accountBalance",
        "email"
    ],
    "goldAdaptors": {
        "uuids": [
            "80121e99-516d-445a-9cbe-7915280c4d42",
            "f96f8385-5a6d-47f4-a784-5bfca05af35d"
        ]
    },
    "silverAdaptors": {
        "uuids": [
            "d798d987-afd0-4cd1-8830-5e7627a69f2e",
            "f8264016-f8bf-4bab-8b2e-fb5a845d2d50"
        ]
    },
    "capableAdaptors": {
        "uuids": []
    },
    "invokeCallbackOn": "GOLD_SILVER",
    "timeout": 7,
    "zoneUserUuid": "9ef2f7e2-ceca-499d-9664-7c8f8c2ea9a0",
    "zoneUuid": "d3b70b3a-9c5f-4ef4-bc70-54b713e46854",
    "callbackUrl": "http://{{callback_ip}}:8082/notify",
    "notificationRegistrationType": "WEB_HOOK"
}


Limit Access to a Set or a Single Adaptor

TODO explain the need. Example of what some call the Coexistence model. Add example .. no need for response content.

Other Related Endpoints

TODO: Are there any??A request for a federated data record can be limited to one or more adaptors by specifying the adaptor(s) UUID in the capableAdaptors property in the request payload:

Code Block
languagejs
titleData Request Using Only a Single Adaptor
{
	"callbackUrl": "https://openmdm.dev.ccctechcenter.org/openmdm-metadata/6c5a754b-6ce0-4871-8dec-d39e255eccc3/drs/da53c1c5-945c-42fb-821f-77ea6e20302c/assembler",
	"zoneUuid": "6c5a754b-6ce0-4871-8dec-d39e255eccc3",
	"capableAdaptors": {
		"uuids": ["2946c735-6bcb-4383-9753-cf09e41d8360"]
	},
	"timeout": 10,
	"notificationRegistrationType": "WEB_SOCKET"
}


Limiting a request to a known system is referred to a Coexistence model where master data is distributed but generally held on a single system holding a golden copy.

Check if Data Record is Mapped at a Specific Adaptor 

To check if YOUnite server has an adaptor-to-domain-entry link for a given master data record at an adaptor. 

  • Adaptor responding to a GET request.
  • PUT or POST data event request (sent from the adaptor to the YOUnite server).