dayschedule.users.list()
Response:
{
"offset": 0,
"limit": 20,
"total": 40,
"returned": 20,
"result": [{
"user_id": 3233,
"org_id": 5322,
"name": "John Doe",
"email": "[email protected]",
"phone": "+91 xxxxxxxxxx",
"role": "Owner",
"permissions": null,
"is_verified": 1,
"team_access": 1,
"page_id": 42322,
"booking_url": "your-domain.dayschedule.com",
"status": "active",
"time_zone": "Asia/Calcutta",
"location": "Delhi",
"team": "Development",
"avatar": "https://cdn.dayschedule.com/uploads/org-287/Avatar/758-1695969730791-a49ae2b2-9472-4de7-ad6e-d09157d8eb09.webp",
"availability": [
{
"day": "SUN",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": false
},
{
"day": "MON",
"times": [
{
"end": "18:00",
"start": "10:00"
}
],
"is_available": true
},
{
"day": "TUE",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": true
},
{
"day": "WED",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": true
},
{
"day": "THU",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": true
},
{
"day": "FRI",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": true
},
{
"day": "SAT",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": false
},
{
"day": "2023-05-17",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": false
},
{
"day": "2023-05-16",
"times": [
{
"end": "18:00",
"start": "09:00"
}
],
"is_available": false
}
],
"last_login_at": "2023-10-10T04:06:32.000Z",
"created_at": "2022-12-15T04:15:10.000Z",
"updated_at": "2023-10-10T04:06:32.000Z"
}]
}
dayschedule.users.get(user_id)
Response:
{
"user_id": 34218,
"org_id": 12312,
"name": "John Doe",
"email": "[email protected]",
"role": "Owner",
"permissions": null,
"status": "active",
"time_zone": "Asia/Calcutta",
"team_access": 1,
"is_verified": 1,
"location": "Delhi",
"team": "Development",
"avatar": "https://cdn.dayschedule.com/uploads/org-287/Avatar/758-1695969730791-a49ae2b2-9472-4de7-ad6e-d09157d8eb09.webp",
"phone": "+91 xxxxxxxxxx",
"plan": "Pro",
"seats_limit": 1,
"seats_used": 3,
"domain": "your-domain",
"page_id": 23222,
"created_at": "2022-12-15T04:15:10.000Z",
"last_login_at": "2023-10-10T04:06:32.000Z"
}
dayschedule.users.create({
"emails":["[email protected]"],
"team_access":true,
"role":"Admin",
"location":"Delhi",
"team":"Sales"
})
Parameters:
For complete reference click here
Name | Type | Description |
---|---|---|
emails* | array | Add user emails you want to add |
role* | array | specify user role. |
Response:
[{
"user_id":86234,
"name":"John Doe",
"email":"[email protected]"
}]
dayschedule.users.update(user_id, {
"name":"John Doe",
"email":"[email protected]",
"phone":"+91 xxxxxxxxxx",
"role":"Admin",
"permissions":null,
"status":"active",
"location":"Delhi",
"team":"Sales",
"team_access": true
})
Parameters:
For complete reference click here
Name | Type | Description |
---|---|---|
name* | string | Name of the user. |
email* | array | email of the user |
role* | array | specify user role. |
status* | string | specify user status. |
permissions* | string | specify user access permission. |
phone* | string | specify user phone number. |
Response:
{
"user_id": 81464,
"org_id": 2657,
"name": "John Doe",
"email": "[email protected]",
"phone": null,
"role": "Admin",
"permissions": null,
"is_verified": 0,
"team_access": 1,
"page_id": null,
"booking_url": null,
"status": "active",
"time_zone": null,
"location": "Delhi",
"team": "Sales",
"avatar": null,
"availability": null,
"last_login_at": null,
"created_at": "2023-10-10T10:23:33.000Z",
"updated_at": null
}
dayschedule.users.delete(user_id)
Response:
{
"message": "User with id: 76093 deleted successfully"
}