- Notification Event
- Fyno Verify
- User Profiles
- User Subscriptions
- User Properties
POST
$ curl -X POST https://api.fyno.io/v1/FYXXXXXXXX/live/profiles/properties/batch \ > -H "Authorization: Bearer " \ > -H "Content-Type: application/json" \ > -d '{ > "batch": [ > { > "distinct_id": "XXXXX", > "action": { > "$set": { > "property_1": "some text", > "property_2": 123, > "property_3": 45.67 > }, > "$once": { > "property_4": true, > "property_5": [ > "iPhone 16 Pro", > "iPad 32 GB" > ], > "property_6": "2020-10-01T18:30:00.000Z" > }, > "$add": { > "property_7": 10.23, > "property_8": -11.9, > "property_9": 223 > }, > "$append": { > "property_10": "#12345", > "property_11": 2030, > "property_12": "2022-11-11T10:30:00+02:00" > }, > "$remove": { > "property_13": "2023-11-10", > "property_14": "ABC1234", > "property_15": 4010 > }, > "$unset": [ > "property_0", > "old_property1" > ] > } > } > ] > }'