Backend API
  1. invitations
Backend API
  • Projects
    • Manager
      • Add a member to project
      • Delete a member
    • tasks
      • Manager
        • Manager add task to user
        • Manager delete task
        • Manager edits a project
        • Manager get user tasks
      • Get personal tasks
      • Add personal task
      • User edits task status
    • Owner
      • Delete a project
    • Cloud storage
      • Store to public storage
      • Store to private storage
      • Get public files
      • Get private files
    • User status in a project
      GET
    • Create a project
      POST
    • Get all user projects
      GET
    • Get single project
      GET
    • get chatrooms keys
      GET
    • Search files
      GET
    • Get statistics
      GET
  • Auth
    • Login
      POST
    • Register
      POST
  • User
    • invitations
      • Get invitations
        GET
      • Decline invitation
        DELETE
      • Accept invitation
        POST
    • profile
      • Get profile
      • Edit profile
      • Update image
      • Update image Copy
  • Register
    POST
  • Untitled Endpoint
    POST
  1. invitations

Decline invitation

Developing
DELETE
http://127.0.0.1:8000/user/invitations/f85879cd-25a6-4c59-805e-10374f2bc073

Request

Header Params

Body Params application/json

Example
{}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'http://127.0.0.1:8000/user/invitations/f85879cd-25a6-4c59-805e-10374f2bc073' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjIwMTc1OWJlLWE5MzAtNGY1OS1iZjU4LTM4MWZlYmRkMDU0YyIsImV4cCI6MjA2OTI0MzYzM30.oA6jDR-HIBta2I5qFW4UHj_3_LOu6b-ums6jWLIpv_s' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200OK
application/json
Body

Example
{}
Modified at 2024-02-29 21:58:25
Previous
Get invitations
Next
Accept invitation
Built with