hngprojects / hng_boilerplate_php_laravel_web

Apache License 2.0
148 stars 58 forks source link

[FIX] (PHP) Refactor Users in Organisation #596

Open tulbadex opened 2 weeks ago

tulbadex commented 2 weeks ago

Description

Delete Organisation's User

Route

Delete: /api/v1/organisations/{userId}/users

Parameters

Name Description
orgId *string($uuid)(path)  orgId

Response body

{
  "data": "string",
  "message": "string",
  "status_code": 0
}

Bad Request

{
  "data": "string",
  "error": "string",
  "message": "string",
  "status_code": 0
}

Unauthorized

{
  "data": "string",
  "error": "string",
  "message": "string",
  "status_code": 0
}

Not found

{
  "data": "string",
  "error": "string",
  "message": "string",
  "status_code": 0
}