Skip to content

Onboarded API (0.0.1)

Download OpenAPI description
Languages
Servers
Mock server
https://docs.onboarded.com/_mock/openapi/
https://app.onboarded.com/

Components

Components APIs

Operations

Employees

Employees APIs

Operations

Employers

Employers APIs

Operations

Clients

Clients APIs

Operations

Jobs

Jobs APIs

Operations

Placements

Placements APIs

Operations

Tasks

Tasks APIs

Operations

Task Change Requests

Task Change Requests APIs

Operations

Forms

Forms APIs

Operations

Files

Files APIs

Operations

Themes

Themes APIs

Operations

Custom Properties

Custom Properties APIs

Operations

Users

Users APIs

Operations

List all users

Request

Security
bearerAuth
Query
pagenumber>= 1
Default 1
per_pagenumber[ 1 .. 300 ]
Default 20
emailstring

Filter users by email

curl -i -X GET \
  'https://docs.onboarded.com/_mock/openapi/api/v1/users?page=1&per_page=20&email=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

200

Bodyapplication/json
dataArray of objectsrequired
data[].​idstringrequired
data[].​emailstringrequired
data[].​created_atstring(date-time)required
data[].​updated_atstring(date-time)required
totalnumberrequired
Response
application/json
{ "data": [ { … } ], "total": 0 }

Create a user

Request

Security
bearerAuth
Bodyapplication/json

Body

emailstring(email)required
passwordstring

When provided, please ensure password is at least 10 characters long and has a zxcvbn score greater than 3. We may also reject breached passwords (based on haveibeenpwned.com). Please handle errors for breached and weak password.

email_verifiedboolean

When false, user will be asked to receive a verification email upon login. Default is false.

curl -i -X POST \
  https://docs.onboarded.com/_mock/openapi/api/v1/users \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "user@example.com",
    "password": "string",
    "email_verified": true
  }'

Responses

201

Bodyapplication/json
idstringrequired
emailstringrequired
created_atstring(date-time)required
updated_atstring(date-time)required
Response
application/json
{ "id": "string", "email": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }

Get a user by id

Request

Security
bearerAuth
Path
idstringrequired
curl -i -X GET \
  'https://docs.onboarded.com/_mock/openapi/api/v1/users/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

200

Bodyapplication/json
idstringrequired
emailstringrequired
created_atstring(date-time)required
updated_atstring(date-time)required
Response
application/json
{ "id": "string", "email": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }

Delete a user by id

Request

Security
bearerAuth
Path
idstringrequired
curl -i -X DELETE \
  'https://docs.onboarded.com/_mock/openapi/api/v1/users/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

200

Bodyapplication/json
idstringrequired
emailstringrequired
created_atstring(date-time)required
updated_atstring(date-time)required
Response
application/json
{ "id": "string", "email": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }

Webhooks

Webhooks APIs

Operations