Skip to main content

PartnerClientsResponseDto

Response containing a list of M2M OAuth2 clients associated with a partner.

clients object[]required

The list of M2M clients belonging to the partner.

  • Array [
  • clientIdstringrequired

    The unique client identifier of the M2M application.

    Example: abc123def456
    namestringrequired

    The display name of the M2M client.

    Example: My M2M Client
    secretRotatedAtstring<date-time>nullable

    The date and time when the client secret was last rotated, or null if never rotated.

    Example: 2025-06-15T10:30:00+00:00
  • ]
  • PartnerClientsResponseDto
    {
    "clients": [
    {
    "clientId": "abc123def456",
    "name": "My M2M Client",
    "secretRotatedAt": "2025-06-15T10:30:00+00:00"
    }
    ]
    }