action bulksms_get_profile { label: "Get profile" description: "Returns information about your user profile" provider: bulksms method: GET path: "/profile" encoding: json output: { type: "object" required: ["created", "credits", "id", "quota", "username"] properties: { commerce: { type: "object" properties: { address: { type: "object" properties: { city: { type: "string" } country: { type: "string" } postalCode: { type: "string" } region: { type: "string" } street: { type: "array" items: { type: "string" } } } } bankPaymentReference: { type: "string" } } } company: { type: "object" properties: { name: { type: "string" } taxReference: { type: "string" } } } created: { type: "string" format: "date-time" } credits: { type: "object" properties: { balance: { type: "number" format: "float" } isTransferAllowed: { type: "boolean" } limit: { type: "integer" format: "int32" } } } id: { type: "string" } originAddresses: { type: "object" properties: { allowed: { type: "array" items: { type: "string" } } isFullControlAllowed: { type: "boolean" } } } quota: { type: "object" required: ["remaining", "size"] properties: { remaining: { type: "integer" format: "int32" description: "The number of messages you can still send today." } size: { type: "integer" format: "int32" description: "The setting that limits the number of messages you can send in a day." } } } username: { type: "string" } } } }