Pass IP Address Through API

Is there a way to create/update without using the SDK?

Looks like if calling the API manually first I have to POST the subscriber, then if the subscriber already exists I need to make another call to search by email to get the UID, then a 3rd call to update the subscriber with new information.
 
I'm not seeing anything in the docs about passing the IP address when creating a new subscriber via the API.
You can pass a "details" key and in that key the ip address:
JavaScript:
[
"FNAME" => "John",
"details" => [
    "ip_address" => "1.2.3.4"
]
 
Back
Top