### Metadata Response Example Source: https://actionnetwork.org/docs/v2/metadata This is an example of a successful response when retrieving metadata. It includes the system name and links to related resources like custom fields. ```json { "name": "Action Network", "_links": { "curies": [ { "name": "osdi", "href": "https://dev.actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://dev.actionnetwork.org/docs/v2/{rel}", "templated": true } ], "self": { "href": "https://dev.actionnetwork.org/api/v2/metadata" }, "action_network:custom_fields": { "href": "https://dev.actionnetwork.org/api/v2/metadata/custom_fields" } } } ``` -------------------------------- ### Retrieve API Entry Point Resource (GET) Source: https://actionnetwork.org/docs/v2/aep Use this GET request to retrieve the API entry point resource. Ensure you include your OSDI-API-Token in the header for authentication. ```http GET https://actionnetwork.org/api/v2/ Header: OSDI-API-Token: your_api_key_here * **Request**: The request section shows the HTTP method, URL, and headers required to access the API entry point. It specifies a `GET` request to the base URL `https://actionnetwork.org/api/v2/` and requires an `OSDI-API-Token` in the header for authentication. This token should be replaced with the user's actual API key. The request is designed to fetch the initial resource that provides links to other API endpoints. This is a fundamental step for any application interacting with the Action Network API, as it serves as the starting point for discovering available resources and functionalities. The `GET` method is appropriate here as it is a read-only operation, retrieving information without modifying any server-side data. The inclusion of the `OSDI-API-Token` header is crucial for authorization, ensuring that only authenticated users can access the API. The response will contain a JSON object with various links, including those to collections of people, events, petitions, and more, as well as documentation links and metadata about the API itself. This structure allows for a discoverable and navigable API. The `max_page_size` field indicates the default number of items to return per page for collection endpoints, which is a common practice in API design to manage response sizes and improve performance. The `vendor_name`, `product_name`, and `namespace` fields provide information about the API provider and its naming conventions. The `osdi_version` indicates the version of the OSDI specification being used. This initial resource is essential for understanding the API's capabilities and for building applications that can dynamically interact with its various features. The response structure, using `_links` to provide hypermedia controls, is a key aspect of the OSDI (Open Social Data Interface) standard, promoting a RESTful approach to API design. The `curies` (Compact URIs) provide a way to shorten link relations, making the JSON more concise and readable. The `templated` attribute in `curies` indicates that the `href` can be used to construct full URIs by replacing `{rel}` with a relation type. This makes the API more self-descriptive and easier to integrate with. The `canvasser:brand_logo` link provides a URL to a brand logo, which could be used in user interfaces to visually identify the Action Network. The `docs` link points to the main API documentation, serving as a gateway for developers to find more detailed information. The `self` link, as expected, points back to the entry point resource itself. The links to various OSDI collections (e.g., `osdi:people`, `osdi:events`) are the primary means by which an application would navigate to specific data resources. The `action_network` specific links (e.g., `action_network:campaigns`) indicate resources that are specific to the Action Network platform and may not be part of the general OSDI specification. The `osdi:person_signup_helper` link is an example of a specific helper resource that might be available. The `osdi:metadata` link provides access to metadata about the API, which can be useful for introspection and understanding the API's capabilities. Overall, the API entry point resource is a critical starting point for any developer looking to integrate with the Action Network API, providing a comprehensive overview of available resources and functionalities through a hypermedia-driven interface. ``` -------------------------------- ### Example Person Response Source: https://actionnetwork.org/docs/v2/post-people This is an example of a successful response when posting a new person using the person signup helper. It includes identifiers, dates, contact information, and links to related resources. ```json 200 OK Content-Type: application/hal+json Cache-Control: max-age=0, private, must-revalidate { "identifiers": [ "action_network:d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b" ], "created_date": "2014-03-25T17:09:57Z", "modified_date": "2014-03-25T17:09:57Z", "family_name": "Smith", "given_name": "John", "email_addresses": [ { "primary": true, "address": "jsmith@mail.com", "status": "subscribed" } ], "phone_numbers": [ { "primary": true, "number": "12021234444", "number_type": "Mobile", "status": "unsubscribed" } ], "postal_addresses": [ { "primary": true, "address_lines": [ "1900 Pennsylvania Ave" ], "locality": "Washington", "region": "DC", "postal_code": "20009", "country": "US", "language": "en", "location": { "latitude": 38.919, "longitude": -77.0379, "accuracy": "Approximate" } } ], "languages_spoken": [ "en" ], "_links": { "self": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b" }, "osdi:attendances": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/attendances" }, "osdi:signatures": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/signatures" }, "osdi:submissions": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/submissions" }, "osdi:donations": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/donations" }, "osdi:outreaches": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/outreaches" }, "osdi:taggings": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/taggings" }, "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] } } ``` -------------------------------- ### Event Embed Code Examples Source: https://actionnetwork.org/docs/v2/embed These examples show different formats for embedding event resources, including options for default styles, layout-only styles, and no styles, as well as full styles. ```html
``` ```html
``` ```html
``` ```html
``` ```html
``` ```html
``` -------------------------------- ### Person Signup API Response Example Source: https://actionnetwork.org/docs/v2/person_signup_helper This is an example of a successful response when creating or updating a person record. It includes identifiers, dates, personal information, and links to related resources. The system deduplicates based on email and phone number. ```json { "identifiers": [ "action_network:d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b" ], "created_date": "2014-03-25T17:09:57Z", "modified_date": "2014-03-25T17:09:57Z", "family_name": "Smith", "given_name": "John", "email_addresses": [ { "primary": true, "address": "jsmith@mail.com", "status": "subscribed" } ], "phone_numbers": [ { "primary": true, "number": "12021234444", "number_type": "Mobile", "status": "unsubscribed" } ], "postal_addresses": [ { "primary": true, "address_lines": [ "1900 Pennsylvania Ave" ], "locality": "Washington", "region": "DC", "postal_code": "20009", "country": "US", "language": "en", "location": { "latitude": 38.919, "longitude": -77.0379, "accuracy": "Approximate" } } ], "languages_spoken": [ "en" ], "_links": { "self": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b" }, "osdi:attendances": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/attendances" }, "osdi:signatures": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/signatures" }, "osdi:submissions": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/submissions" }, "osdi:donations": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/donations" }, "osdi:outreaches": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/outreaches" }, "osdi:taggings": { "href": "https://actionnetwork.org/api/v2/people/d32fcdd6-7366-466d-a3b8-7e0d87c3cd8b/taggings" }, "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] } } ``` -------------------------------- ### Event Campaigns Collection Response Example Source: https://actionnetwork.org/docs/v2/event_campaigns This is an example of a successful response (200 OK) when requesting a collection of event campaigns. It includes pagination details, links to related resources, and embedded event campaign data. ```JSON 200 OK Content-Type: application/hal+json Cache-Control: max-age=0, private, must-revalidate { "total_pages": 10, "per_page": 25, "page": 1, "total_records": 237, "_links": { "next": { "href": "https://actionnetwork.org/api/v2/event_campaigns?page=2" }, "self": { "href": "https://actionnetwork.org/api/v2/event_campaigns" }, "action_network:event_campaigns": [ { "href": "https://actionnetwork.org/api/v2/event_campaigns/874e7e97-973d-4683-b992-61e1ca120710" }, { "href": "https://actionnetwork.org/api/v2/event_campaigns/e948ff6c-9f1e-11e3-a2e9-12313d316c29" }, //truncated for brevity ], "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] }, "_embedded": { "action_network:event_campaigns": [ { "identifiers": [ "action_network:874e7e97-973d-4683-b992-61e1ca120710" ], "origin_system": "Action Network", "created_date": "2014-03-07T16:50:29Z", "modified_date": "2014-03-07T16:51:16Z", "title": "House parties to help us win!", "description": "

Host house parties next week to help us win our campaign!

", "host_pitch": "Hosting a house party is easy! Sign up and we'll give you what you need to know.", "host_instructions": "

Download our toolkit for all the instructions you need to host an event.

", "browser_url": "https://actionnetwork.org/event_campaigns/house-parties-to-help-us-win", "host_url": "https://actionnetwork.org/events/new?event_campaign_id=84", "featured_image_url": "https://actionnetwork.org/images/events.jpg", "total_events": 35, "total_rsvps": 467, "action_network:hidden": false, "action_network:sponsor": { "title": "Progressive Action Now", "url": "https://actionnetwork.org/groups/progressive-action-now" }, "_links": { "self": { "href": "https://actionnetwork.org/api/v2/event_campaigns/874e7e97-973d-4683-b992-61e1ca120710" }, "osdi:events": { "href": "https://actionnetwork.org/api/v2/event_campaigns/874e7e97-973d-4683-b992-61e1ca120710/events" }, "action_network:embed": { "href": "https://actionnetwork.org/api/v2/event_campaigns/874e7e97-973d-4683-b992-61e1ca120710/embed" } } }, { "identifiers": [ "action_network:e948ff6c-9f1e-11e3-a2e9-12313d316c29" ], "origin_system": "Action Network", "created_date": "2014-02-03T16:32:34Z", "modified_date": "2014-02-03T16:42:10Z", "title": "Protest the bad bill in your town", "description": "

Help us stop this bad bill from becoming law by joining a local protest.

", "host_pitch": "Hosting is easy, we'll help you out, do it now!", "host_instructions": "

Here's everything you need to host a protest...

", "browser_url": "https://actionnetwork.org/event_campaigns/protest-the-bad-bill-in-your-town", "host_url": "https://actionnetwork.org/events/new?event_campaign_id=82", "total_events": 4, "total_rsvps": 11, "action_network:sponsor": { "title": "Progressive Action Now", "url": "https://actionnetwork.org/groups/progressive-action-now" }, "_links": { "self": { "href": "https://actionnetwork.org/api/v2/event_campaigns/e948ff6c-9f1e-11e3-a2e9-12313d316c29" }, "osdi:events": { "href": "https://actionnetwork.org/api/v2/event_campaigns/e948ff6c-9f1e-11e3-a2e9-12313d316c29/events" }, "action_network:embed": { "href": "https://actionnetwork.org/api/v2/event_campaigns/e948ff6c-9f1e-11e3-a2e9-12313d316c29/embed" } } }, //truncated for brevity ] } } ``` -------------------------------- ### Retrieve Individual Outreach Resource (GET Request) Source: https://actionnetwork.org/docs/v2/outreaches Use this HTTP GET request to fetch a specific outreach resource by its ID within an advocacy campaign. Ensure to replace 'your_api_key_here' with a valid OSDI-API-Token in the header. ```HTTP Request GET https://actionnetwork.org/api/v2/advocacy_campaigns/049e9bda-cb79-420d-91ba-92e5a15ba62f/outreaches/f1119c4e-b8ca-44ff-bfa7-f78f7ca3ec16 Header: OSDI-API-Token: your_api_key_here ``` -------------------------------- ### Retrieve Attendance Collection for an Event (GET) Source: https://actionnetwork.org/docs/v2/attendances This snippet demonstrates how to retrieve a collection of attendance resources associated with a specific event using a GET request to the API. ```HTTP GET https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968/attendances Header: OSDI-API-Token: your_api_key_here ``` ```JSON 200 OK Content-Type: application/hal+json Cache-Control: max-age=0, private, must-revalidate { "total_pages": 1, "per_page": 25, "page": 1, "total_records": 20, "_links": { "self": { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968/attendances" }, "osdi:attendance": [ { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968/attendances/d51ca19e-9fe9-11e3-a2e9-12313d316c29" }, { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968/attendances/d51c9b4a-9fe9-11e3-a2e9-12313d316c29" }, //truncated for brevity ], "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] }, "_embedded": { "osdi:attendances": [ { "identifiers": [ "action_network:d51ca19e-9fe9-11e3-a2e9-12313d316c29" ], "created_date": "2014-02-18T20:52:59Z", "modified_date": "2014-02-18T20:53:00Z", "status": "accepted", "action_network:person_id": "ceef7e23-4617-4af8-bd0f-60029299d8cd", "action_network:event_id": "12c9a105-1ab6-472e-ac04-667c521a5968", "_links": { "self": { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968/attendances/d51ca19e-9fe9-11e3-a2e9-12313d316c29" }, "osdi:event": { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968" }, "osdi:person": { "href": "https://actionnetwork.org/api/v2/people/ceef7e23-4617-4af8-bd0f-60029299d8cd" } } }, { "identifiers": [ "action_network:d51c9b4a-9fe9-11e3-a2e9-12313d316c29" ], "created_date": "2014-02-18T20:23:42Z", "modified_date": "2014-02-18T20:23:42Z", "status": "accepted", "action_network:person_id": "06d13a33-6824-493b-a922-95e793f269d3", "action_network:event_id": "12c9a105-1ab6-472e-ac04-667c521a5968", "_links": { "self": { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968/attendances/d51c9b4a-9fe9-11e3-a2e9-12313d316c29" }, "osdi:event": { "href": "https://actionnetwork.org/api/v2/events/12c9a105-1ab6-472e-ac04-667c521a5968" }, "osdi:person": { "href": "https://actionnetwork.org/api/v2/people/06d13a33-6824-493b-a922-95e793f269d3" } } }, //truncated for brevity ] } } ``` -------------------------------- ### Get API Entry Point Source: https://actionnetwork.org/docs/v2/post-people Retrieve the API entry point to find available API helpers, including the person signup helper. Requires an API key. ```http GET https://actionnetwork.org/api/v2/ Header: Content-Type: application/json OSDI-API-Token: your_api_key_here A new person is added to the system. This is a POST request to the person signup helper. The helper performs deduplication based on email address and phone number. The response includes the newly created person object. The `add_tags` field is optional and can be used to tag the person upon creation. ``` -------------------------------- ### Retrieve a Collection of Message Resources (GET) Source: https://actionnetwork.org/docs/v2/messages Use this endpoint to get a collection of all messages associated with your API key. Ensure your API key is included in the OSDI-API-Token header. ```http GET https://actionnetwork.org/api/v2/messages/ Header: OSDI-API-Token: your_api_key_here ``` ```json { "total_pages": 7, "per_page": 25, "page": 1, "total_records": 162, "_links": { "next": { "href": "https://actionnetwork.org/api/v2/messages?page=2" }, "self": { "href": "https://actionnetwork.org/api/v2/messages" }, "osdi:messages": [ { "href": "https://actionnetwork.org/api/v2/messages/a4dde5b6-0512-48ea-b4ad-63a71117b43d" }, { "href": "https://actionnetwork.org/api/v2/messages/a27178b9-45c3-4844-8ebf-ebd5da74a1e3" }, //truncated for brevity ], "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] }, "_embedded": { "osdi:messages": [ { "identifiers": [ "action_network:a4dde5b6-0512-48ea-b4ad-63a71117b43d" ], "origin_system": "Action Network", "created_date": "2014-03-24T18:03:45Z", "modified_date": "2014-03-25T15:00:22Z", "subject": "Stop doing the bad thing", "body": "

The mayor should stop doing the bad thing.

", "from": "Progressive Action Now", "reply_to": "jane@progressiveactionnow.org", "administrative_url": "https://actionnetwork.org/emails/stop-doing-the-bad-thing/manage", "total_targeted": 2354, "status": "sent", "sent_start_date": "2014-03-26T15:00:22Z", "type": "email", "targets": [ { "href": "https://actionnetwork.org/api/v2/queries/2cba37d8-1fbf-11e7-8cc2-22000aedd9ed" } ], "statistics": { "sent": 2354, "opened": 563, "clicked": 472, "actions": 380, "action_network:donated": 14, "action_network:total_amount": 320.25, "unsubscribed": 12, "bounced": 2, "spam_reports": 1 }, "_links": { "self": { "href": "https://actionnetwork.org/api/v2/messages/a4dde5b6-0512-48ea-b4ad-63a71117b43d" }, "osdi:wrapper": { "href": "https://actionnetwork.org/api/v2/wrappers/c945d6fe-929e-11e3-a2e9-12313d316c29" }, "osdi:recipients": { "href": "https://actionnetwork.org/api/v2/lists/950e9954-606f-43e6-be99-2bc0bc2072a1" }, "osdi:send_helper": { "href": "https://actionnetwork.org/api/v2/messages/a4dde5b6-0512-48ea-b4ad-63a71117b43d/send" }, "osdi:schedule_helper": { "href": "https://actionnetwork.org/api/v2/messages/a4dde5b6-0512-48ea-b4ad-63a71117b43d/schedule" } } }, { "identifiers": [ "action_network:a27178b9-45c3-4844-8ebf-ebd5da74a1e3", "foreign_system:1" ], "origin_system": "My Email Making System", "created_date": "2014-03-27T18:03:45Z", "modified_date": "2014-03-28T15:00:22Z", "subject": "FWD: Stop doing the bad thing", "body": "

Have you signed yet? The mayor should stop doing the bad thing.

", "from": "Progressive Action Now", "reply_to": "jane@progressiveactionnow.org", "administrative_url": "https://actionnetwork.org/emails/fwd-stop-doing-the-bad-thing/manage", "total_targeted": 12673, "status": "draft", "type": "email", "targets": [], "_links": { "self": { "href": "https://actionnetwork.org/api/v2/messages/a27178b9-45c3-4844-8ebf-ebd5da74a1e3" }, "osdi:send_helper": { "href": "https://actionnetwork.org/api/v2/messages/a27178b9-45c3-4844-8ebf-ebd5da74a1e3/send" }, "osdi:schedule_helper": { "href": "https://actionnetwork.org/api/v2/messages/a27178b9-45c3-4844-8ebf-ebd5da74a1e3/schedule" } } }, //truncated for brevity ] } } ``` -------------------------------- ### Retrieve Collection of Query Resources (GET) Source: https://actionnetwork.org/docs/v2/queries Use this endpoint to get a collection of all queries associated with your API key. Ensure your API key is included in the OSDI-API-Token header. ```http GET https://actionnetwork.org/api/v2/queries/ Header: OSDI-API-Token: your_api_key_here ``` ```json { "total_pages": 7, "per_page": 25, "page": 1, "total_records": 162, "_links": { "next": { "href": "https://actionnetwork.org/api/v2/queries?page=2" }, "self": { "href": "https://actionnetwork.org/api/v2/queries" }, "osdi:queries": [ { "href": "https://actionnetwork.org/api/v2/queries/a4dde5b6-0512-48ea-b4ad-63a71117b43d" }, { "href": "https://actionnetwork.org/api/v2/queries/a27178b9-45c3-4844-8ebf-ebd5da74a1e3" }, //truncated for brevity ], "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] }, "_embedded": { "osdi:queries": [ { "identifiers": [ "action_network:a4dde5b6-0512-48ea-b4ad-63a71117b43d" ], "origin_system": "Action Network", "created_date": "2014-03-24T18:03:45Z", "modified_date": "2014-03-25T15:00:22Z", "name": "All donors", "browser_url": "https://actionnetwork.org/queries/1/edit", "_links": { "self": { "href": "https://actionnetwork.org/api/v2/queries/a4dde5b6-0512-48ea-b4ad-63a71117b43d" } } }, { "identifiers": [ "action_network:a27178b9-45c3-4844-8ebf-ebd5da74a1e3" ], "origin_system": "Action Network", "created_date": "2014-03-14T15:21:05Z", "modified_date": "2014-03-17T19:56:11Z", "name": "Volunteer prospects", "browser_url": "https://actionnetwork.org/queries/2/edit", "_links": { "self": { "href": "https://actionnetwork.org/api/v2/queries/a27178b9-45c3-4844-8ebf-ebd5da74a1e3" } } }, //truncated for brevity ] } } ``` -------------------------------- ### POST Advocacy Campaign with Creator Link Source: https://actionnetwork.org/docs/v2/advocacy_campaigns This example shows how to create a new advocacy campaign and assign it to a specific Action Network user by including the creator's href in the request body. Ensure you include your API key in the headers. ```http POST https://actionnetwork.org/api/v2/advocacy_campaigns Header: Content-Type: application/json OSDI-API-Token: your_api_key_here { "title": "My Free Advocacy Campaign", "origin_system": "FreeAdvocacy.com", "_links" : { "osdi:creator" : { "href" : "https://actionnetwork.org/api/v2/people/c945d6fe-929e-11e3-a2e9-12313d316c29" } } } ``` -------------------------------- ### Retrieve a Collection of List Resources (GET) Source: https://actionnetwork.org/docs/v2/lists Use this endpoint to get a collection of all lists associated with your API key. Ensure your API key is included in the OSDI-API-Token header. ```http GET https://actionnetwork.org/api/v2/lists/ Header: OSDI-API-Token: your_api_key_here ``` ```json { "total_pages": 10, "per_page": 25, "page": 1, "total_records": 243, "_links": { "next": { "href": "https://actionnetwork.org/api/v2/lists?page=2" }, "self": { "href": "https://actionnetwork.org/api/v2/lists" }, "osdi:lists": [ { "href": "https://actionnetwork.org/api/v2/lists/71f8feef-61c8-4e6b-9745-ec1d7752f298" }, { "href": "https://actionnetwork.org/api/v2/lists/fc0a1ec6-5743-4b98-ae0c-cea8766b2212" }, //truncated for brevity ], "curies": [ { "name": "osdi", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true }, { "name": "action_network", "href": "https://actionnetwork.org/docs/v2/{rel}", "templated": true } ] }, "_embedded": { "osdi:lists": [ { "identifiers": [ "action_network:71f8feef-61c8-4e6b-9745-ec1d7752f298" ], "origin_system": "Action Network", "created_date": "2014-03-25T17:11:33Z", "modified_date": "2014-03-25T17:13:33Z", "title": "Stop Doing The Bad Thing Petition Signers", "description": "Report", "browser_url": "https://actionnetwork.org/reports/stop-doing-the-bad-thing-petition-signers/manage", "_links": { "self": { "href": "https://actionnetwork.org/api/v2/lists/71f8feef-61c8-4e6b-9745-ec1d7752f298" }, "osdi:items": { "href": "https://actionnetwork.org/api/v2/lists/71f8feef-61c8-4e6b-9745-ec1d7752f298/items" } } }, { "identifiers": [ "action_network:fc0a1ec6-5743-4b98-ae0c-cea8766b2212" ], "origin_system": "Action Network", "created_date": "2014-03-24T18:26:42Z", "modified_date": "2014-03-24T18:27:17Z", "title": "Sign our new petition!", "description": "Email", "browser_url": "https://actionnetwork.org/emails/sign-our-new-petition/manage", "_links": { "self": { "href": "https://actionnetwork.org/api/v2/lists/fc0a1ec6-5743-4b98-ae0c-cea8766b2212" }, "osdi:items": { "href": "https://actionnetwork.org/api/v2/lists/fc0a1ec6-5743-4b98-ae0c-cea8766b2212/items" } } }, //truncated for brevity ] } } ```