Skip to main content
GET
/
managed-accounts
List Retailer Credentials
curl --request GET \
  --url https://api.zinc.com/managed-accounts
{
  "credentials": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "short_id": "<string>",
      "email": "<string>",
      "retailer": "<string>",
      "forwarding_email": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "has_totp": false,
      "has_forwarding": false,
      "retailer_config": {}
    }
  ],
  "total": 123
}
Retrieve a list of all retailer credentials associated with your account.

Response

Returns an object containing:
  • credentials - Array of retailer credential objects
  • total - Total number of credentials
Each credential includes:
  • id - Unique identifier (UUID)
  • short_id - Short identifier used in URLs (e.g., zn_acct_a1b2c3d4)
  • email - Retailer account email
  • retailer - Retailer name, or null if default credentials
  • has_totp - Whether TOTP 2FA is configured
  • has_forwarding - Whether email forwarding has been verified
  • created_at - When the credentials were created
  • updated_at - When the credentials were last updated

Headers

authorization
string | null

Response

Successful Response

Response model for list of retailer credentials.

credentials
RetailerCredentialsResponse · object[]
required
total
integer
required