Save your wardrobe booking apis
  1. Authentication
Save your wardrobe booking apis
  • Customer booking
    • Getting Started
      • Introduction
      • Authentication
      • Attribute groups
    • Authentication
      • Customer login
        POST
      • Customer signup
        POST
    • categories
      • Get providers
      • Get clothes categories
    • services
      • Get services
    • Upload photos
      • Uplaod photos
    • shoppingCart
      • Create A New Shopping Cart
      • Add items to Shopping Cart
      • Add customer to Shopping Cart
      • Delete Item From Shopping Cart
      • Get Available Logistics Options
      • Add Logistic Option To Shopping Cart
    • order
      • Create the Order from the Shopping Cart
      • List Orders
  • Schemas
    • attributesGroup
    • currency
    • translatedString
    • metadata
    • shoppingCart
    • item
    • item Copy
    • order
  1. Authentication

Customer signup

Developing
POST
/api/sip/auth/signup
Enables new users to register on the platform. After a successful login, a JWT token is returned for subsequent authorization.

Request

Body Params application/json

Example
{
  "Password": "password123",
  "ConfirmePassword": "password123",
  "FamilyName": "doc",
  "Name": "documentation",
  "Email": "doncumentation@saveyourwardrobe.com"
}

Responses

🟢200Success
application/json
Body

Example
{
    "FamilyName": "doc",
    "Name": "documentation",
    "Email": "doncumentation@saveyourwardrobe.com"
}
Previous
Customer login
Next
Get providers
Built with