action velopayments_payor_create_application_v1 { label: "Create Application" description: "
Create an application for the given Payor ID.
\nApplications provide a means to group your API Keys
\nFor example you might have an SAP application that you wish to integrate with Velo
\nYou can create an application and then create one or more API keys for the application
\n" provider: velopayments method: POST path: "/v1/payors/{payorId}/applications" encoding: json input: { type: "object" properties: { description: { type: "string" description: "Description of the application." } name: { type: "string" description: "The name of the application." } payorId: { type: "string" format: "uuid" } } required: ["name", "payorId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }