Party Currency
  1. currencies
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 all users
    • Activate user
    • Suspend user
    • Delete User
    • get events
    • get pending events
    • get users (with email)
    • change event status
    • get event transaction admin
    • get all transactions
  • currencies
    • save currency
      POST
    • get all user currency
      GET
    • get currency by id
      GET
    • update currrency
      PUT
    • delete currency
      DELETE
    • Download Image
      POST
  • merchant
    • delete event reserved account
    • Create reserved account for event
    • get merchant transactions
    • Untitled Endpoint
  1. currencies

update currrency

Developing
PUT
/currencies/update-currency/
update currency , event_id is optional. pass all othe rparameters , including old ones
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://party-currency-app-production-5074.up.railway.app/currencies/update-currency/?currency_id=7CUR5CURmCURcCUR2' \
--header 'Authorization: Token 6441fd488bd0dbfccc2a953d739276a55d867b90' \
--form 'currency_name="iya elewa"' \
--form 'front_celebration_text="Happy Birthday"' \
--form 'back_celebration_text="Long life and prosperity"' \
--form 'front_image=@"/Users/mac/Documents/tecno pop7 pro /DCIM/Camera/1697364956432.jpg"' \
--form 'back_image=@"/Users/mac/Documents/tecno pop7 pro /DCIM/Camera/IMG_20231016_071140_968.jpg"' \
--form 'event_id="Eve1234"'
Response Response Example
{}

Request

Query Params
currency_id
string 
optional
Example:
7CUR5CURmCURcCUR2
Header Params
Authorization
string 
optional
Example:
Token 6441fd488bd0dbfccc2a953d739276a55d867b90
Body Params multipart/form-data
currency_name
string 
optional
Example:
iya elewa
front_celebration_text
string 
optional
Example:
Happy Birthday
back_celebration_text
string 
optional
Example:
Long life and prosperity
front_image
file 
optional
Example:
file:///Users/mac/Documents/tecno pop7 pro /DCIM/Camera/1697364956432.jpg
back_image
file 
optional
Example:
file:///Users/mac/Documents/tecno pop7 pro /DCIM/Camera/IMG_20231016_071140_968.jpg
event_id
string 
optional
Example:
Eve1234

Responses

🟢200Success
application/json
Body
object {0}
Previous
get currency by id
Next
delete currency
Built with