Simple SMS
    Simple SMS
    • Register
      POST
    • Login
      POST
    • me
      GET
    • Send To Single Number
      POST
    • Create Sender ID
      POST
    • Get Dashboard Data
      GET
    • Get User sender IDs
      GET
    • Send Bulk SMS
      POST
    • Delete Sender ID
      GET
    • Schemas
      • Sample Schemas
        • Pet
        • Category
        • Tag

      me

      GET
      /api/me

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Header Params

      Responses

      🟢200Success
      application/json
      Body

      🟠401Fail
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/api/me' \
      --header 'Accept: application/json' \
      --header 'Authorization: Bearer <token>'
      Response Response Example
      200 - Success
      {
          "user information": {
              "id": 1,
              "name": "kunda Kapakala",
              "email": "kapakalakunda@gmail.com",
              "email_verified_at": null,
              "created_at": "2024-07-18T13:05:41.000000Z",
              "updated_at": "2024-07-18T13:05:41.000000Z"
          }
      }
      Modified at 2024-10-05 07:18:25
      Previous
      Login
      Next
      Send To Single Number
      Built with