Add a Source System
You can append a source system, that provides lookup values for lookup types, to an existing configuration.
You can add the source system by posting a request. If the request is successful, then it returns a JSON that displays the attributes of the added source type.
Request
POST {TenantURL}/configuration/sources
Parameter |
Name |
Required |
Description |
---|---|---|---|
Headers |
Content-Type |
Yes | The value should be "Content-Type:
application/json ". |
Body |
Yes |
JSON object with Source type specification in Reltio Business Model format. |
Response
If a source type is created successfully, then the response will contain a JSON with this source type.
Example Request
POST {TenantURL}/configuration/sources
Body:{
"uri":"configuration/sources/GAR",
"label":"GAR",
"abbreviation":"GAR",
"icon":"images/source/twitter.png"
}
Example Response
POST {TenantURL}/configuration/sources
Body:
{
"uri": "configuration/sources/GAR",
"label": "GAR",
"abbreviation": "GAR",
"icon": "images/source/twitter.png"
}