Skip to main content

Retrieve Merchant User

GET 

/v1/acquirer/merchants/:merchant_id/users/:id

Retrieve a single merchant user.

Required permission: merchant_users_read.

Request

Path Parameters

    merchant_id stringrequired

    Acquirer-assigned merchant identifier (the merchant_id field of the merchant, not its internal UUID).

    id uuidrequired

    Merchant user UUID.

Responses

The user.

Schema

    id uuidrequired

    A 36-character UUIDv7 identifier.

    active booleanrequired

    false while the user is disabled.

    merchant_id uuidrequired

    A 36-character UUIDv7 identifier.

    email emailrequired
    name stringrequired
    description stringnullable
    permissions string[]required
    two_factor_enabled boolean
    created_by_user_id uuid

    A 36-character UUIDv7 identifier.

    disabled_by_user_id uuid

    A 36-character UUIDv7 identifier.

    disabled_at date-time

    ISO 8601 UTC timestamp with time zone designator.

    invited_by_id uuid

    A 36-character UUIDv7 identifier.

    invited_by_type stringnullable

    Possible values: [AcquirerUser, MerchantUser, StaffUser, AcquirerApiKey, null]

    invitation_sent_at date-time

    ISO 8601 UTC timestamp with time zone designator.

    invitation_accepted_at date-time

    ISO 8601 UTC timestamp with time zone designator.

    password_expires_at date-time

    ISO 8601 UTC timestamp with time zone designator.

    must_reset_password_at date-time

    ISO 8601 UTC timestamp with time zone designator.

    password_reset_at date-time

    ISO 8601 UTC timestamp with time zone designator.

    created_at date-timerequired

    ISO 8601 UTC timestamp with time zone designator.

    updated_at date-timerequired

    ISO 8601 UTC timestamp with time zone designator.

Loading...