add-phone-book manually
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"book_id": 5,
"name": [
"Arif Rahman",
"Sara Islam",
"John Doe"
],
"phone": [
"01711223344",
"01822334455",
"01933445566"
],
"email": [
"arif@example.com",
"sara@example.com",
"john@example.com"
],
"address": [
"Dhaka, Bangladesh",
"Chittagong, Bangladesh",
"Sylhet, Bangladesh"
],
"note": [
"Mathematics Teacher",
"Guardian of Grade 5",
"Office Staff"
]
}
Request Code Samples
curl --location --request POST 'https://apidev.edufee.online/api/add-phone-book' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"book_id": 5,
"name": [
"Arif Rahman",
"Sara Islam",
"John Doe"
],
"phone": [
"01711223344",
"01822334455",
"01933445566"
],
"email": [
"arif@example.com",
"sara@example.com",
"john@example.com"
],
"address": [
"Dhaka, Bangladesh",
"Chittagong, Bangladesh",
"Sylhet, Bangladesh"
],
"note": [
"Mathematics Teacher",
"Guardian of Grade 5",
"Office Staff"
]
}'
Responses
application/json Modified at 2026-01-25 11:29:48