💻Plugin Kết nối WordPress
PHẦN MỀM WORDPRESS
HƯớng dẫn

K
Install the library
The best way to interact with our API is to use one of our official libraries:
# Install via NPM
npm install --save my-api# Install via pip
pip install --upgrade myapiMake your first request
To make your first request, send an authenticated request to the pets endpoint. This will create a pet, which is nice.
Create pet.
POST https://api.myapi.com/v1/pet
Creates a new pet.
Request Body
Name
Type
Description
name*
string
The name of the pet
owner_id
string
The id of the user who owns the pet
species
string
The species of the pet
breed
string
The breed of the pet
{
"name"="Wilson",
"owner": {
"id": "sha7891bikojbkreuy",
"name": "Samuel Passet",
"species": "Dog",}
"breed": "Golden Retriever",
}Take a look at how you might call this method using our official libraries, or via curl:
curl https://api.myapi.com/v1/pet
-u YOUR_API_KEY:
-d name='Wilson'
-d species='dog'
-d owner_id='sha7891bikojbkreuy' // require the myapi module and set it up with your API key
const myapi = require('myapi')(YOUR_API_KEY);
const newPet = away myapi.pet.create({
name: 'Wilson',
owner_id: 'sha7891bikojbkreuy',
species: 'Dog',
breed: 'Golden Retriever',
})// Set your API key before making the request
myapi.api_key = YOUR_API_KEY
myapi.Pet.create(
name='Wilson',
owner_id='sha7891bikojbkreuy',
species='Dog',
breed='Golden Retriever',
)Last updated