action shutterstock_get_user { label: "Get user details" provider: shutterstock method: GET path: "/v2/user" encoding: json output: { type: "object" description: "User details" properties: { contributor_id: { type: "string" description: "Unique internal identifier of the user, as a contributor" } customer_id: { type: "string" description: "Unique internal identifier of the user, as a purchaser" } email: { type: "string" description: "Email address of the user" } first_name: { type: "string" description: "First name of the user" } full_name: { type: "string" description: "Full name including first, middle, and last name of the user" } id: { type: "string" description: "Unique internal identifier for the user, not tied to contributor or purchasing customer" } is_premier: { type: "boolean" description: "True if the user has access to the Premier collection, false otherwise" } is_premier_parent: { type: "boolean" description: "True if the user has access to the Premier collection and also has child users" } language: { type: "string" description: "Main language of the user account" } last_name: { type: "string" description: "Last name of the user" } only_enhanced_license: { type: "boolean" description: "True if the user has an enterprise license, false otherwise" } only_sensitive_use: { type: "boolean" description: "True if the user has access to sensitive use only, false otherwise" } organization_id: { type: "string" description: "Unique internal identifier for the user's organization, specific to Premier users" } premier_permissions: { type: "array" description: "List of permissions allowed through the Premier client" items: { type: "string" } } username: { type: "string" description: "User name associated to the user" } } } }