@portone/server-sdk
    Preparing search index...

    Type Alias PayoutClient

    포트원 API 클라이언트를 생성합니다.

    type PayoutClient = {
        completePlatformPayoutByPartnerSettlementIds: (
            options: {
                test?: boolean;
                bulkPayoutId: string;
                name?: string;
                partnerSettlementIds: string[];
                completedAt?: string;
                isForTest?: boolean;
            },
        ) => Promise<CompletePlatformPayoutByPartnerSettlementIdsResponse>;
        getPlatformPayouts: (
            options?: {
                test?: boolean;
                isForTest?: boolean;
                page?: PageInput;
                filter?: PlatformPayoutFilterInput;
            },
        ) => Promise<GetPlatformPayoutsResponse>;
    }
    Index

    Properties

    completePlatformPayoutByPartnerSettlementIds: (
        options: {
            test?: boolean;
            bulkPayoutId: string;
            name?: string;
            partnerSettlementIds: string[];
            completedAt?: string;
            isForTest?: boolean;
        },
    ) => Promise<CompletePlatformPayoutByPartnerSettlementIdsResponse>

    일괄 지급 완료 처리

    선택한 정산내역 아이디들로 일괄 지급을 완료 처리 합니다.

    CompletePlatformPayoutByPartnerSettlementIdsError

    실험적 API입니다. 하위호환성 정책과 무관하게 변경 및 지원 종료될 수 있으니 이용에 유의하세요.

    getPlatformPayouts: (
        options?: {
            test?: boolean;
            isForTest?: boolean;
            page?: PageInput;
            filter?: PlatformPayoutFilterInput;
        },
    ) => Promise<GetPlatformPayoutsResponse>

    지급 내역 다건 조회

    여러 지급 내역을 조회합니다.

    GetPlatformPayoutsError