You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it returns token null and empty templates array, while I have one activeTaskTemplate. I have assigned the permissions to the security profile and the same task template is displaying correctly in the CCP task window.
I am using amazon-connect-taskjs 2.0 and amazon connect streams 2.4.5
The text was updated successfully, but these errors were encountered:
Something similar happened to me, but the issue is in the status. If it is specified in capital letters it works.
const queryParams = {
status: 'ACTIVE',
maxResults: 100
};
I am using the following code to fetch the list of task templates
**const queryParams = {/
status: 'active'
maxResults: 50
};
agent.listTaskTemplates(queryParams, {
success: function(data) { console.log("List of task templates loaded successfully", data) },
failure: function(err) {
console.error(err);
}
});**
it returns token null and empty templates array, while I have one activeTaskTemplate. I have assigned the permissions to the security profile and the same task template is displaying correctly in the CCP task window.
I am using amazon-connect-taskjs 2.0 and amazon connect streams 2.4.5
The text was updated successfully, but these errors were encountered: