action authentiq_create_client { label: "Register a client" description: "Register a new client with this Authentiq Connect provider.\n\nThis endpoint is compatible with [OIDC's Client Registration](http://openid.net/specs/openid-connect-registration-1_0.html) extension.\n" provider: authentiq method: POST path: "/client" encoding: json input: { description: "Client object" required: ["client_name", "client_uri"] properties: { application_type: { type: "string" } client_id: { type: "string" } client_name: { type: "string" } client_uri: { type: "string" } contacts: { type: "array" items: { type: "string" } } default_max_age: { type: "integer" format: "int64" } default_scopes: { type: "array" items: { type: "string" } } grant_types: { type: "array" items: { type: "string" } } logo_uri: { type: "string" } policy_uri: { type: "string" } redirect_uris: { type: "array" items: { type: "string" } } response_types: { type: "array" items: { type: "string" } } tos_uri: { type: "string" } } } output: { type: "object" additionalProperties: true } }