action dev_get_profile_image { label: "A Users or organizations profile image" description: "This endpoint allows the client to retrieve a user or organization profile image information by its\n corresponding username." provider: dev method: GET path: "/api/profile_images/{username}" encoding: json input: { type: "object" properties: { username: { type: "string" } } required: ["username"] additionalProperties: false } output: { type: "object" items: { type: "object" description: "A profile image object" properties: { image_of: { type: "string" description: "Determines the type of the profile image owner (user or organization)" } profile_image: { type: "string" description: "Profile image (640x640)" } profile_image_90: { type: "string" description: "Profile image (90x90)" } type_of: { type: "string" description: "Return profile_image" } } } } }