Quick Start
# Install via NPM
npm install --save concur-api# Install via pip
pip install --upgrade concurMake 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 new
POST https://test.concur.live
Creates a new data principal
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:
Last updated