organizations

post/organizations

Request body

idinteger
namestring
logostring
created_atstring date-time

Example request

{
  "id": 1,
  "name": "VerifyWise Corp",
  "logo": "logo.png",
  "created_at": "2024-01-01T00:00:00.000Z"
}

Response

organization created successfully

messagestring

Example response

{
  "message": "created",
  "data": {
    "id": 1,
    "name": "VerifyWise Corp",
    "logo": "logo.png",
    "created_at": "2024-01-01T00:00:00.000Z"
  }
}

Changes