ENUM

RegisterPayoutInformationErrorCode

Enumerates possible errors when registering payout information.

link GraphQL Schema definition

1enum RegisterPayoutInformationErrorCode {
2
3# Must have auth credentials to register payout information.
4UNAUTHENTICATED
5
6# User does not have permission to register payout information for the targeted
7# user.
8FORBIDDEN
9
10# One or more fields have an invalid format.
11INVALID_FORMAT
12
13# An internal error has occurred.
14INTERNAL_ERROR
15}