Skip to main content
GET
/
v2
/
access
/
users
/
blocked
List blocked users
curl --request GET \
  --url https://api-next.ofauth.com/v2/access/users/blocked \
  --header 'apiKey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "list": [
    {
      "id": 123,
      "username": "<string>",
      "name": "<string>",
      "isVerified": true,
      "avatar": "<string>",
      "lists": [
        {
          "id": "<string>",
          "type": "<string>",
          "name": "<string>"
        }
      ],
      "avatarThumbs": {
        "c50": "<string>",
        "c144": "<string>"
      },
      "displayName": "<string>",
      "notice": "<string>",
      "isRestricted": true,
      "canRestrict": true,
      "subscribedBy": true,
      "subscribedByExpire": true,
      "subscribedByExpireDate": "<string>",
      "subscribedByAutoprolong": true,
      "subscribedIsExpiredNow": true,
      "currentSubscribePrice": 123,
      "subscribedOn": true,
      "subscribedOnExpiredNow": true,
      "subscribedOnDuration": "<string>",
      "canReport": true,
      "canReceiveChatMessage": true,
      "hideChat": true,
      "lastSeen": "<string>",
      "isPerformer": true,
      "isRealPerformer": true,
      "subscribedByData": {
        "price": 123,
        "newPrice": 123,
        "regularPrice": 123,
        "subscribePrice": 123,
        "discountPercent": 123,
        "discountPeriod": 123,
        "subscribeAt": "<string>",
        "expiredAt": "<string>",
        "renewedAt": "<string>",
        "discountFinishedAt": "<string>",
        "discountStartedAt": "<string>",
        "status": "<string>",
        "isMuted": true,
        "unsubscribeReason": "<string>",
        "duration": "<string>",
        "hasActivePaidSubscriptions": true,
        "showPostsInFeed": true,
        "subscribes": [
          {
            "id": 123,
            "userId": 123,
            "subscriberId": 123,
            "date": "<string>",
            "duration": 123,
            "startDate": "<string>",
            "expireDate": "<string>",
            "cancelDate": "<string>",
            "price": 123,
            "regularPrice": 123,
            "discount": 123,
            "earningId": 123,
            "action": "<string>",
            "type": "<string>",
            "offerStart": "<string>",
            "offerEnd": "<string>",
            "isCurrent": true
          }
        ]
      },
      "subscribedOnData": {
        "price": 123,
        "newPrice": 123,
        "regularPrice": 123,
        "subscribePrice": 123,
        "discountPercent": 123,
        "discountPeriod": 123,
        "subscribeAt": "<string>",
        "expiredAt": "<string>",
        "renewedAt": "<string>",
        "discountFinishedAt": "<string>",
        "discountStartedAt": "<string>",
        "status": "<string>",
        "isMuted": true,
        "unsubscribeReason": "<string>",
        "duration": "<string>",
        "hasActivePaidSubscriptions": true,
        "subscribes": [
          {
            "id": 123,
            "userId": 123,
            "subscriberId": 123,
            "date": "<string>",
            "duration": 123,
            "startDate": "<string>",
            "expireDate": "<string>",
            "cancelDate": "<string>",
            "price": 123,
            "regularPrice": 123,
            "discount": 123,
            "earningId": 123,
            "action": "<string>",
            "type": "<string>",
            "offerStart": "<string>",
            "offerEnd": "<string>",
            "isCurrent": true
          }
        ],
        "tipsSumm": 123,
        "subscribesSumm": 123,
        "messagesSumm": 123,
        "postsSumm": 123,
        "streamsSumm": 123,
        "totalSumm": 123
      },
      "canTrialSend": true,
      "isBlocked": true,
      "canUnsubscribe": true,
      "isPendingAutoprolong": true
    }
  ],
  "hasMore": true
}

Authorizations

apiKey
string
header
required

Your OFAuth API key for authenticating requests.

x-connection-id
string
header
required

Requires a connection via the x-connection-id header.

Query Parameters

limit
integer
default:10

Number of items to return (1-20, default: 10)

Required range: 1 <= x <= 20
offset
integer | null
default:0

Number of items to skip (default: 0)

Required range: x >= 0

Response

Successful response

list
object[]
required
hasMore
boolean
required