# Get Payment Schedule of Credit Application GET /partner/v2/shops/:shop_uuid/applications/:application_uuid/payment_schedules?response_level=full This endpoint can be used after application has been submitted within the Direct API integration flow. To retrieve the payment schedule for an application and present it to the customer, the GET /partner/v2/shops/:shop_uuid/applications/:application_uuid/payment_schedules?response_level=full request can be used. The level of detail that the response will include, depends on the selected response_level. Endpoint: GET /partner/v2/shops/{shop_uuid}/applications/{application_uuid}/payment_schedules Security: bearerAuth ## Path parameters: - `shop_uuid` (string, required) The unique identifier of the shop. Example: "38571c75-2590-4c81-8252-531613c96363" - `application_uuid` (string, required) The unique identifier of a particular credit application. Example: "471e6282-3384-412b-af7b-646eb8f04391" ## Query parameters: - `response_level` (string, required) Indication of how detailed the returned response should be. Options: summary, items, full. Example: "full" ## Response 200 fields (application/json): - `payment_schedule` (object) - `payment_schedule.credit_application_uuid` (string) The UUID of the credit application. - `payment_schedule.response_level` (string) Indication of how detailed the returned response should be. Options: summary, items, full. - `payment_schedule.period` (number) The UUID of the credit application. - `payment_schedule.amount` (string) The payment schedule amount. - `payment_schedule.payment_day` (string) The payment day. - `payment_schedule.down_payment_amount_total` (string) The down payment total amount. - `payment_schedule.down_payment_amount_prc` (string) The down payment amount in percentage. - `payment_schedule.net_credit_amount` (string) The net credit amount. - `payment_schedule.payment_amount_monthly` (string) The monthly payment amount. - `payment_schedule.interest_rate_annual` (string) The annual interest rate. - `payment_schedule.contract_fee_amount_total` (string) The total contract fee amount. - `payment_schedule.contract_fee_prc` (string) The contract fee percentage. - `payment_schedule.admin_fee_amount_monthly` (string) The monthly admin fee amount. - `payment_schedule.admin_fee_amount_total` (string) The total admin fee amount. - `payment_schedule.insurance_fee_amount_monthly` (string) The monthly insurance fee amount. - `payment_schedule.insurance_fee_amount_total` (string) The total insurance fee amount. - `payment_schedule.credit_cost_rate_annual` (string) The annual credit cost rate. - `payment_schedule.credit_cost_amount_total` (string) The total credit cost amount. - `payment_schedule.residual_amount_total` (string) The total residual amount. - `payment_schedule.residual_amount_prc` (string) The residual amount percentage. - `payment_schedule.interest_type` (string) The interest type. - `payment_schedule.campaign_interest_type` (string) The campaign interest type. - `payment_schedule.campaign_interest_period_start_date` (string) The start date of the campaign interest period. - `payment_schedule.campaign_interest_period_end_date` (string) The end date of the campaign interest period. - `payment_schedule.campaign_interest_rate` (string) The campaign interest rate. - `payment_schedule.floating_interest_rate` (object) - `payment_schedule.floating_interest_rate.base_rate_type` (string) The base rate type. - `payment_schedule.floating_interest_rate.base_rate_value` (string) The base rate value. - `payment_schedule.floating_interest_rate.margin` (string) The margin. - `payment_schedule.floating_interest_rate.campaign_margin` (string) The campaing margin. - `payment_schedule.floating_interest_rate.next_base_rate_change_date` (string) The date of the next base rate change. - `payment_schedule.interest_bearing_amount` (string) The interest bearing amount. - `payment_schedule.interest_amount_total` (string) The total interest amount. - `payment_schedule.repayments_amount_total` (string) The total repayments amount. - `payment_schedule.first_payment_date` (string) The first payment date. - `payment_schedule.first_payment_amount` (string) The first payment amount. - `payment_schedule.last_payment_date` (string) The last payment date. - `payment_schedule.last_payment_amount` (string) The last payment amount. - `payment_schedule.payment_schedule_items` (object) - `payment_schedule.payment_schedule_items.item_number` (string) The item number. - `payment_schedule.payment_schedule_items.payment_date` (string) The payment date. - `payment_schedule.payment_schedule_items.balance_before` (string) The balance before. - `payment_schedule.payment_schedule_items.principal` (string) The principal. - `payment_schedule.payment_schedule_items.interest` (string) The interest. - `payment_schedule.payment_schedule_items.contract_fee` (string) The contract fee. - `payment_schedule.payment_schedule_items.admin_fee` (string) The admin fee. - `payment_schedule.payment_schedule_items.insurance_fee` (string) The insurance fee. - `payment_schedule.payment_schedule_items.total_payment` (string) The total payment. ## Response 401 fields (application/json): - `message` (string) Unauthorized Example: "unauthorized" ## Response 403 fields (application/json): - `message` (string) Unauthorized access Example: "User is not authorized to access this resource with an explicit deny" ## Response 404 fields (application/json): - `message` (string) Not Found ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "internal_server_error"