Skip to content

Instantly share code, notes, and snippets.

View CallumPrimeDev's full-sized avatar

CallumPrimeDev

View GitHub Profile
@CallumPrimeDev
CallumPrimeDev / trigger_portal_update.php
Created November 18, 2024 14:48
A custom endpoint that updates the price field and opening bid (custom field) for a given property
<?php
add_action('rest_api_init', function () {
register_rest_route('ppa/v1', '/update-property/', array(
'methods' => 'POST',
'callback' => 'update_property',
'permission_callback' => 'basic_auth_permission_check'
));
});