Integratec API Platform
getBrokerIdentity

Description

Retrieves the Master's internal inter-module communication identity string, in its display form (truncated GUID).

Remarks

This could be used to guarantee that a client API is connected to the correct Master, if the Master is configured to have a unique name (via external settings file).

Example

Request

{}

Reply

{
"identity": "broker-12D4F"
}

Request Schema

{
"$schema":"http://json-schema.org/draft-04/schema#",
"type":"object"
}

Reply Schema

{
"$schema":"http://json-schema.org/draft-04/schema#",
"type":"object",
"required":[
"identity"
],
"properties":{
"identity":{
"type":"string",
"minLength":1
}
}
}