Authorizations
Body
application/json
curl --request POST \
--url https://api.terminal49.com/v2/parties \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"attributes": {
"company_name": "COMPANY NAME"
}
}
}'{
"data": {
"id": "ba4cb904-827f-4038-8e31-1e92b3356218",
"type": "party",
"attributes": {
"company_name": "COMPANY NAME"
}
},
"links": {
"self": "/v2/parties/ba4cb904-827f-4038-8e31-1e92b3356218"
}
}Creates a new party
curl --request POST \
--url https://api.terminal49.com/v2/parties \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"attributes": {
"company_name": "COMPANY NAME"
}
}
}'{
"data": {
"id": "ba4cb904-827f-4038-8e31-1e92b3356218",
"type": "party",
"attributes": {
"company_name": "COMPANY NAME"
}
},
"links": {
"self": "/v2/parties/ba4cb904-827f-4038-8e31-1e92b3356218"
}
}Show child attributes
Was this page helpful?