--- swagger: "2.0" info: x-ibm-name: mspace-send-sms title: mSpace Send SMS version: 1.0.0 description: "" schemes: - https basePath: /mspacesms consumes: - application/json produces: - application/json securityDefinitions: clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id security: - clientIdHeader: [] x-ibm-configuration: testable: true enforced: true phase: realized paths: /send: post: responses: 200: description: 200 OK parameters: - name: request required: false in: body schema: $ref: '#/definitions/data-req' definitions: data-req: properties: receipientMask: type: string message: properties: [] type: string characterEncoding: properties: [] type: string appID: properties: [] type: string appKey: properties: [] type: string additionalProperties: false input: properties: message: properties: [] type: string appID: properties: [] type: string appKey: properties: [] type: string receipientMask: properties: [] type: string additionalProperties: false required: - receipientMask - appKey tags: [] x-ibm-endpoints: - endpointUrl: https://apphub.mobitel.lk/mobext/mapi type: - production - development ...