Networks ======== Network users are replicated to and retrieved from the Invoca Marketing Automation Platform using this API. The network interface is fully idempotent, and the create and update commands both expect the full set of users each time. For instance, if on one POST two users, user1@invoca.com and user2@invoca.com are specified, but on the next POST, only user1@invoca.com is specified, then as a result of that second post, user2@invoca.com will be deleted. For this reason, POST and PUT requests are identical in their effect, although they return 201 and 200 codes respectively for ease of integration. Parameters .. list-table:: :widths: 11 34 40 :header-rows: 1 :class: parameters * - Property - Type - Value * - name - string - Network name (read only). * - users - json array of hashes - 0 or more users for the network. User attributes are listed below. * - id_from_network - string - The network’s id for this User. * - email_address - string in RFC 2822 addr_spec format - The user’s email address. Unique for this user. (mandatory field) * - first_name - string - The user’s first name. * - last_name - string - The user’s last name. * - phone_number - string in ITU E.164 format or 10-digit US form (no punctuation) - The user’s phone number. * - role - One of: Super (default), Manager, Member, Observer, Reporting - The user’s role within the network. Endpoint: ``https://invoca.net/api/@@NETWORK_API_VERSION//network.json`` .. api_endpoint:: :verb: GET :path: /<network_id>/network :description: Get Network and its Users :page: get_network .. api_endpoint:: :verb: POST :path: /<network_id>/network :description: Create Network Users :page: post_network_users .. api_endpoint:: :verb: PUT :path: /<network_id>/network :description: Update Network Users :page: put_network_user