action flat_list_lti_credentials { label: "List LTI 1.x credentials" provider: flat method: GET path: "/organizations/lti/credentials" encoding: json output: { type: "array" items: { type: "object" description: "A couple of LTI 1.x OAuth credentials" properties: { consumerKey: { type: "string" description: "OAuth 1 Consumer Key" } consumerSecret: { type: "string" description: "OAuth 1 Consumer Secret" } creationDate: { type: "string" format: "date-time" description: "The creation date of thse credentials" } creator: { type: "string" description: "Unique identifier of the user who created these credentials" } id: { type: "string" description: "The unique identifier of this couple of credentials" } lastUsage: { type: "string" format: "date-time" description: "The last time these credentials were used" } lms: { type: "string" description: "LMS name" enum: ["canvas", "moodle", "schoology", "blackboard", "desire2learn", "sakai", "schoolbox", "other"] } name: { type: "string" description: "Name of the couple of credentials" } organization: { type: "string" description: "The unique identifier of the Organization associated to these credentials" } } } } }