action gamesparks_put_billing_details { label: "Updates the Billing Details" description: "Updates the Billing Details." provider: gamesparks method: PUT path: "/restv2/game/{apiKey}/admin/billingDetails" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } building: { type: "string" } city: { type: "string" } companyName: { type: "string" } country: { type: "string" } email1: { type: "string" } email2: { type: "string" } email3: { type: "string" } firstName1: { type: "string" } firstName2: { type: "string" } firstName3: { type: "string" } lastName1: { type: "string" } lastName2: { type: "string" } lastName3: { type: "string" } postcode: { type: "string" } state: { type: "string" } street: { type: "string" } taxNumber: { type: "string" } } required: ["apiKey", "building", "city", "companyName", "country", "email1", "firstName1", "lastName1", "postcode", "street"] additionalProperties: false } output: { type: "object" additionalProperties: true } }