Created
July 30, 2025 06:35
-
-
Save propertyhive/f10fd11f714f3cdee7f46f37ed1b4e1a to your computer and use it in GitHub Desktop.
Import specific agent/account from Rex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'propertyhive_rex_property_request_body', 'filter_account_in_rex_request' ); | |
| function filter_account_in_rex_request($data) | |
| { | |
| $data['criteria'][] = array( | |
| "name" => "account_id", | |
| "type" => "=", | |
| "value" => "4392" | |
| ); | |
| return $data; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment