Title: Fixed issue with error 403
Last modified: October 17, 2022

---

# Fixed issue with error 403

 *  [tnchuntic](https://wordpress.org/support/users/tnchuntic/)
 * (@tnchuntic)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/fixed-issue-with-error-403/)
 * **Error:**
    403 GET /wp-json/wp/v2/types/dedo_download?context=edit&_locale=user
   HTTP/1.1
 * **Solution:**
    /** * Add REST API support to an already registered post type.*/
   add_filter( ‘register_post_type_args’, ‘my_post_type_args’, 10, 2 );
 * function my_post_type_args( $args, $post_type ) {
 *  if ( ‘dedo_download’ === $post_type ) {
    $args[‘show_in_rest’] = true;
 *  }
 *  return $args;
    }
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ffixed-issue-with-error-403%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Thread Starter [tnchuntic](https://wordpress.org/support/users/tnchuntic/)
 * (@tnchuntic)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/fixed-issue-with-error-403/#post-16104555)
 * Just sharing solution 🙂

Viewing 1 replies (of 1 total)

The topic ‘Fixed issue with error 403’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/delightful-downloads_33bab1.svg)
 * [Delightful Downloads](https://wordpress.org/plugins/delightful-downloads/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/delightful-downloads/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/delightful-downloads/)
 * [Active Topics](https://wordpress.org/support/plugin/delightful-downloads/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/delightful-downloads/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/delightful-downloads/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [tnchuntic](https://wordpress.org/support/users/tnchuntic/)
 * Last activity: [3 years, 7 months ago](https://wordpress.org/support/topic/fixed-issue-with-error-403/#post-16104555)
 * Status: not resolved