Power2SME Customer Contact API

Operations 8

GET /cache/user/{query} Clear Login Credentials Cache #
GET /change/email updates emailId based on email and phone number. #
POST /changepassword Change Password #
POST /createpassword Create New Password #
POST /customerlogin Sign In #
POST /isregister Contact Already Registered or not #
GET /loadcustomerdetailsbyid fetches user details based on email/phone #
POST /registercontact Sign Up #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/power2sme-customer-contact-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

power2sme-customer-contact-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Some custom description of API.
  version: '1.0'
  title: POWER2SME Bank Master Customer Contact API
  termsOfService: https://www.power2sme.com/termsandconditions
  contact:
    name: Power2sme
  license:
    name: License of API
    url: https://www.power2sme.com/privacypolicy
servers:
- url: https://api.power2sme.com/api/ws/v4
tags:
- name: Customer Contact
  description: ' '
paths:
  /cache/user/{query}:
    get:
      tags:
      - Customer Contact
      summary: Clear Login Credentials Cache
      description: This is to clear cache of login Credentials in the map
      operationId: cacheUsingGET
      parameters:
      - name: query
        in: path
        description: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /change/email:
    get:
      tags:
      - Customer Contact
      summary: 'updates emailId based on email and phone number. '
      description: This loads user by emailid or phone number.
      operationId: changeEmailUsingGET
      parameters:
      - name: oldEmail
        in: query
        description: oldemail
        required: true
        schema:
          type: string
      - name: newEmail
        in: query
        description: newemail
        required: true
        schema:
          type: string
      - name: mobileNo
        in: query
        description: mobileno
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /changepassword:
    post:
      tags:
      - Customer Contact
      summary: Change Password
      description: Here Customer can change his password by providing old password, new password and Mobile No.
      operationId: changePasswordUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Change_Password'
        description: ChangePassword
        required: true
  /createpassword:
    post:
      tags:
      - Customer Contact
      summary: Create New Password
      description: If Customer forgot his old password, then here he can create his new password.
      operationId: createPasswordUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Create_Password'
        description: CreatePassword
        required: true
  /customerlogin:
    post:
      tags:
      - Customer Contact
      summary: Sign In
      description: Here Customer can sign in into his account by providing Mobile No and password.
      operationId: customerloginUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Contact_Login'
        description: ContactLogin
        required: true
  /isregister:
    post:
      tags:
      - Customer Contact
      summary: Contact Already Registered or not
      description: This is a check whether user is registered with us or not by providing Mobile No. and Email.
      operationId: isRegisterUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Contact_Email'
        description: ContactEmail
        required: true
  /loadcustomerdetailsbyid:
    get:
      tags:
      - Customer Contact
      summary: ' fetches user details based on email/phone'
      description: This loads user by emailid or phone number.
      operationId: loadUserByIdUsingGET
      parameters:
      - name: id
        in: query
        description: Email/Phone
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Response_Model'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /registercontact:
    post:
      tags:
      - Customer Contact
      summary: Sign Up
      description: Here Customer can register and he will registered as a contact in our system. He has to provide some basic and mandatory information like Name, Mobile No. Company Name, Email and Password
      operationId: registercontactUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response_Model'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Contact_Register'
        description: Contact
        required: true
components:
  schemas:
    Contact_Register:
      type: object
      required:
      - companyname
      - confirm_password
      - contact_number
      - email
      - firstname
      - lastname
      - leadsource
      - password
      properties:
        companyname:
          type: string
          description: Give the Company Name of User
        confirm_password:
          type: string
          description: Give the password of User
        contact_number:
          type: string
          description: Give the mobile no. of User
        email:
          type: string
          description: Give the Email of User
        firstname:
          type: string
          description: Give the first name of User
        lastname:
          type: string
          description: Give the last name of User
        leadsource:
          type: string
          description: Give the Lead Source
        password:
          type: string
          description: Give the password of User
      description: Model for signing up as a Contact
    Create_Password:
      type: object
      required:
      - newPassword
      - tokenId
      - userName
      properties:
        newPassword:
          type: string
          description: Give the value of New Password
        tokenId:
          type: string
          description: Give the token Id of User
        userName:
          type: string
          description: Give the contact of User
      description: Model for creating the new password.
    Contact_Email:
      type: object
      required:
      - contact_number
      properties:
        contact_number:
          type: string
          description: Give the contact of User
        email:
          type: string
          description: Give the Email Id of User
      description: Model of Contact and Email.
    Change_Password:
      type: object
      required:
      - newPassword
      - oldPassword
      - userName
      properties:
        newPassword:
          type: string
          description: Give the value of new password
        oldPassword:
          type: string
          description: Give the value of old password
        userName:
          type: string
          description: Give the Contact of User
      description: Model for changing the password.
    Contact_Login:
      type: object
      required:
      - password
      - userId
      properties:
        password:
          type: string
          description: Give the password of User
        userId:
          type: string
          description: Give the User Id of User
      description: Model for Login into his account
    Response_Model:
      type: object
      required:
      - Data
      - ErrorCode
      - Message
      - Status
      - TotalRecords
      properties:
        Data:
          type: object
          description: Give the Response of API's in the form of JSON Object
        ErrorCode:
          type: integer
          format: int32
          description: Give the Error Code according to the Response of API's.
        Message:
          type: string
          description: Give the Message according to the Response of API's.
        Status:
          type: integer
          format: int32
          description: Give the Status according to the Response of API's.
        TotalRecords:
          type: integer
          format: int32
          description: Give the Total No. of Records according to the Response of API's.
      description: Model for the response of API's