GWID Core
  1. Authentication
GWID Core
  • Authentication
    • Signup
      POST
    • Login
      POST
  • User
    • Get Profile
      GET
  • Gateway
    • Get User Gateway
      GET
    • Create AWS Gateway
      POST
  • Region
    • Get AWS Regions
      GET
  • AWS Credentials
    • Add AWS Credentials
      POST
    • Get AWS Credentials
      GET
  • EC2
    • Get EC2 Instance Types
      GET
  1. Authentication

Signup

Prod Env
https://api.gwid.io/api/v1
Prod Env
https://api.gwid.io/api/v1
POST
https://api.gwid.io/api/v1
/auth/signup
Maintainer:Charles Duruaku

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/json

Examples

Responses

🟢201Created
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gwid.io/api/v1/auth/signup' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "email": "string",
    "password": "string"
}'
Response Response Example
{"data":{"id":"01dfeafb-76e4-4c74-be4a-658fe1aeda32","role":"regular","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjAxZGZlYWZiLTc2ZTQtNGM3NC1iZTRhLTY1OGZlMWFlZGEzMiIsInJvbGUiOiJyZWd1bGFyIiwiaXNzIjoibG9sYXJwYXkiLCJleHAiOjE3NTM3NDcyNzAsIm5iZiI6MTc1MTE1NTI3MCwiaWF0IjoxNzUxMTU1MjcwfQ.VQWYUXLqxRc59Njfa8qWYdK485ENo7ahYCk_MKfdOdw"},"success":true}
Modified at 2025-08-04 09:06:01
Next
Login
Built with