PaySar
  1. PaySar
PaySar
  • CLIENT
    • PaySar
      • Create Paysar
        POST
      • GET PAYSAR
        GET
      • GetUser Payser
        GET
      • Replay Paysar
        PUT
      • Reply Paysar
        GET
    • Image
      • Get Images
    • Auth
      • Register
      • Login
      • Logout
    • User
      • getUser
      • Get Public User
      • Update User
      • GetAllUser
    • Feedback
      • createfeedback
    • Blog
      • Blog
      • Get Blog
      • like blog
  1. PaySar

Create Paysar

Developing
POST
v1/api/paysar
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:3200/v1/api/paysar' \
--data-urlencode 'username=sutpi' \
--data-urlencode 'title=LOVE' \
--data-urlencode 'content=Love encompasses a range of strong and positive emotional and mental states, from the most sublime virtue or good habit, the deepest interpersonal affection, to the simplest pleasure.[1] An example of this range of meanings is that the love of a mother differs from the love of a spouse, which differs from the love for food. Most commonly, love refers to a feeling of strong attraction and emotional attachment.[2]' \
--data-urlencode 'sender_id=23'
Response Response Example
{
  "data": true,
  "msg": "Paysar sent successfully"
}

Request

Body Params application/x-www-form-urlencoded
username
string 
required
reciver_name
Example:
sutpi
title
string 
required
Title
Example:
LOVE
content
string 
required
Content
Example:
Love encompasses a range of strong and positive emotional and mental states, from the most sublime virtue or good habit, the deepest interpersonal affection, to the simplest pleasure.[1] An example of this range of meanings is that the love of a mother differs from the love of a spouse, which differs from the love for food. Most commonly, love refers to a feeling of strong attraction and emotional attachment.[2]
sender_id
integer 
optional
user_id
Example:
23

Responses

🟢200OK
application/json
Body
object {0}
Next
GET PAYSAR
Built with