Skip to content

List accounts

GET
/v1/accounts

List all Pinterest accounts for the authenticated organization.

Authorizations

Responses

200

List of accounts

object
data
object
accounts
Array<object>
object
id

Account ID

string
userId

Pinterest user ID

string
displayName

Display name

string
username

Pinterest username

string
avatarUrl

Profile image URL

string
nullable
tokenAuthorized

Whether the Pinterest token is valid

boolean
isDomainVerified

Whether the domain is verified

boolean
createdAt

When the account was connected

string format: date-time
meta
object
requestId

Unique request ID for debugging

string

401

Authentication required or invalid API key

object
error
object
code

Error code

string
message

Error message

string
meta
object
requestId

Unique request ID for debugging

string
Example
{
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid API key"
},
"meta": {
"requestId": "abc123"
}
}