action enode_get_me { label: "Get My User" description: "Returns metadata about the authenticated User, including a list of vendors for which the user has provided credentials." provider: enode method: GET path: "/me" encoding: json output: { type: "object" properties: { id: { type: "string" } linkedVendors: { type: "array" items: { type: "object" properties: { isValid: { type: "boolean" description: "Whether the provided credentials are currently valid. A `false` value here indicates that a credential has become invalidated, and [Link User](#operation/postUsersUseridLink) should be used to get new credentials from this user." } vendor: { type: "object" additionalProperties: true } } } } } } }