header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
object {0}
Example
{"name":["John Doe","Jane Smith","Alice Johnson"],"phone":["1234567890","9876543210","5555555555"],"email":["john.doe@example.com","jane.smith@example.com","alice.johnson@example.com"],"address":["123 Elm Street","456 Oak Avenue","789 Pine Road"],"note":["Friend from school","Colleague","Neighbor"]}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request POST 'https://apidev.edufee.online/api/add-phone-book' \
--header'Content-Type: application/json' \
--data-raw'{
"name": [
"John Doe",
"Jane Smith",
"Alice Johnson"
],
"phone": [
"1234567890",
"9876543210",
"5555555555"
],
"email": [
"john.doe@example.com",
"jane.smith@example.com",
"alice.johnson@example.com"
],
"address": [
"123 Elm Street",
"456 Oak Avenue",
"789 Pine Road"
],
"note": [
"Friend from school",
"Colleague",
"Neighbor"
]
}'