application/json

Body Required

  • icon string | null

    Icon

  • name string Required

    Name

  • portal string Required

    Portal

    Values are vendor, returns, or reeller.

  • url string Required

    Url

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
POST /portal-links.json
curl \
 --request POST 'http://api.example.com/v1/portal-links.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"icon":"string","name":"string","portal":"vendor","url":"string"}'
Request examples
{
  "icon": "string",
  "name": "string",
  "portal": "vendor",
  "url": "string"
}
Response examples (200)
{
  "createdAt": "2025-05-04T09:42:00Z",
  "icon": "string",
  "id": 42,
  "name": "string",
  "portal": "vendor",
  "updatedAt": "2025-05-04T09:42:00Z",
  "url": "string"
}