Move Referential Question
curl --request PUT \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}/questions/{question_id}/move \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"domain": "<string>"
}
'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}/questions/{question_id}/move"
payload = { "domain": "<string>" }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({domain: '<string>'})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}/questions/{question_id}/move', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Coverage
Move Referential Question
Move a single reference question to another domain.
PUT
/
api
/
v1
/
coverage
/
referentials
/
{referential_id}
/
questions
/
{question_id}
/
move
Move Referential Question
curl --request PUT \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}/questions/{question_id}/move \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"domain": "<string>"
}
'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}/questions/{question_id}/move"
payload = { "domain": "<string>" }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({domain: '<string>'})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}/questions/{question_id}/move', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));