Party Currency
  1. Authentication
Party Currency
  • Start your Apidog journey
  • Authentication
    • Login
      POST
    • signup user
      POST
    • signup merchant
      POST
    • Google
      POST
  • user
    • profile picture
      • get profile pictue
      • upload profile picture
    • create event
      POST
    • edit user profile
      PUT
    • get all user transactions
      GET
    • Get User Profile
      GET
  • events
    • create event
      POST
    • get events
      GET
    • get event details
      GET
    • delete event
      DELETE
    • save currency image
      PUT
    • get currency by event id
      GET
    • get event transaction
      GET
  • payment
    • generate transcation
      POST
    • pay
      POST
  • admin
    • get admin dashboard details
      GET
    • get all users
      GET
    • Activate user
      PUT
    • Suspend user
      PUT
    • Delete User
      DELETE
    • get events
      GET
    • get pending events
      GET
    • get users (with email)
      GET
    • change event status
      POST
    • get event transaction admin
      GET
    • get all transactions
      GET
  • currencies
    • save currency
    • get all user currency
    • get currency by id
    • update currrency
    • delete currency
    • Download Image
  • merchant
    • delete event reserved account
    • Create reserved account for event
    • get merchant transactions
    • Untitled Endpoint
  1. Authentication

signup user

Developing
POST
/auth/signup/user
route to signup as a user
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://party-currency-app-production-5074.up.railway.app/auth/signup/user' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "string",
    "password": "string",
    "firstname": "string",
    "lastname": "string",
    "phonenumber": "string"
}'
Response Response Example
{}

Request

Body Params application/json
email
string 
required
user email
password
string 
required
password
firstname
string 
required
first name (text )
lastname
string 
required
last name (text)
phonenumber
string 
required
phone number +234 plus 10 digits format
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
Login
Next
signup merchant
Built with