action mastodon_get_api_v1_accounts_id_identity_proofs { label: "get_api_v1_accounts_id_identity_proofs" description: "Array of IdentityProof" provider: mastodon method: GET path: "/api/v1/accounts/{id}/identity_proofs" encoding: json output: { type: "array" items: { description: "Represents a proof from an external identity provider." properties: { profile_url: { type: "string" description: "The account owner's profile URL on the identity provider." } proof_url: { type: "string" description: "A link to a statement of identity proof, hosted by the identity provider." } provider: { type: "string" description: "The name of the identity provider." } provider_username: { type: "string" description: "The account owner's username on the identity provider's service." } updated_at: { type: "string" description: "When the identity proof was last updated. ISO 8601 Datetime." } } } } }