A test endpoint, which simply returns the input provided.
Last updated 11 months ago
Message in plain text
Message sent.
const response = await fetch('youragentURL.symphony.com/agent/v1/util/echo', { method: 'POST', headers: { "sessionToken": "text", "keyManagerToken": "text", "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "message": "text" }