GWID Core
  1. User
GWID Core
  • Authentication
    • Signup
      POST
    • Login
      POST
    • Change Password
      PATCH
  • User
    • Get Profile
      GET
    • Update Profile
      PATCH
  • 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. User

Update Profile

Developing
Prod Env
https://api.gwid.io/api/v1
Prod Env
https://api.gwid.io/api/v1
PATCH
https://api.gwid.io/api/v1
/user/profile
Maintainer:Not configured

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

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.gwid.io/api/v1/user/profile' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string"
}'
Response Response Example
{
    "data": {
        "id": "0c53ff8f-8d70-4253-975e-257e236a6950",
        "name": "Kenneth Bayer IV",
        "email": "jamir35@yahoo.com",
        "role": "regular",
        "referral_code": "ZDUG9F",
        "created_at": "2025-11-13T08:54:16.000909Z",
        "updated_at": "2025-11-13T11:03:42.287088456Z",
        "gateways": null,
        "aws_credentials": null,
        "referral_rewards": null
    },
    "success": true
}
Modified at 2025-11-13 11:03:03
Previous
Get Profile
Next
Get User Gateway
Built with