Create Reference Data for a new authorisation domain system
POST
/references/users/authorisationdomain/systems
curl \
--request POST 'https://matls-api.sandbox.raidiam.io/references/users/authorisationdomain/systems' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "x-fapi-auth-date: string" \
--header "x-fapi-customer-ip-address: string" \
--header "x-fapi-interaction-id: string" \
--header "x-customer-user-agent: string" \
--data '{"Description":"string","Name":"string","Status":"Active"}'
Request examples
# Headers
x-fapi-auth-date: string
x-fapi-customer-ip-address: string
x-fapi-interaction-id: string
x-customer-user-agent: string
# Payload
{
"Description": "string",
"Name": "string",
"Status": "Active"
}
Response examples (201)
# Headers
x-fapi-interaction-id: 73cac523-d3ae-2289-b106-330a6218710d
# Payload
{
"Description": "string",
"Name": "string",
"Status": "Active",
"SystemID": "string"
}
Response examples (400)
# Headers
x-fapi-interaction-id: 73cac523-d3ae-2289-b106-330a6218710d
# Payload
{
"errors": [
"string"
]
}