Skip to main content
POST
/
brand-standards-list
List brand standards
curl --request POST \
  --url https://api.jackson.scope3.com/brand-standards-list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "where": {
    "customerId": 123,
    "name": "<string>"
  },
  "orderBy": {
    "id": "asc",
    "name": "asc"
  },
  "take": 123,
  "skip": 123
}'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer token authentication using Scope3 API key

Body

application/json
where
object

Optional Prisma where clause for filtering

orderBy
object

Optional ordering for results

take
number

Number of records to return (pagination)

skip
number

Number of records to skip (pagination)

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I