Skip to content

Latest commit

 

History

History
179 lines (131 loc) · 6.74 KB

record_canvass.md

File metadata and controls

179 lines (131 loc) · 6.74 KB
layout title
default
Record Canvass Helper

Record Canvass Helper

This document defines the Record Canvass Helper resource.

The Record Attendance Helper is a helper endpoint to aid in the creation of Canvass, Answer, and Tagging resources via POST. It provides a quick and easy way to create a canvass as well as all the data collected during that canvass, eliminating the need for multiple POST operations to store that information.

The Record Canvass Helper assumes that the person who was canvassed (the "target") already exists in the system.

The response to a Record Canvass Helper POST is the full representation of the Canvass.

Some initial implementations may only support helpers -- direct RESTful access may not be supported. In those cases, the _links section may be omitted in responses.

Sections:

{% include endpoints_and_url_structures.md %}

The link relation label for the Record Canvass Helper is osdi:record_canvass_helper.

Back to top...

Fields

{% include fields_intro.md %}

{% include global_fields_helper.md %}

Back to top...

Record Canvass Helper Fields

A list of fields specific for POSTing via the Record Canvass Helper.

| Name | Type | Description |----------- |-----------|-----------|-------------- |origin_system |string |A human readable identifier of the system where this attendance was created. (ex: "OSDI System") |action_date |string |The date and time the canvass was attempted. | contact_type | string | A code indicating the method by which the person was contacted. For example: "in-person" | input_type | string | A code indicating the method by which the canvass is being input into the system. For example: "mobile" | success | boolean | True if the target was successfully contacted, False otherwise. | status_code | string | A code indicating the status of the contact attempt. For example: "not-home" indicates that the contact failed because the target was not home, while "success" indicates that the target was contacted successfully. An empty or missing value for status_code should be assumed to mean that the contact was successful. | canvasser |Person | A link to a single Person resource representing the person who made the contact. |add_answers |QuestionResponse* |An array of inline QuestionReponse objects, which will be used to create Answer objects related to this Canvass. |add_tags |strings[] |An array of tag names corresponding to previously created tags to add to this person when it is created.

Back to top...

Related Objects

These JSON hashes included in the table above are broken out into their own tables for readability, rather than independent resources with their own endpoints.

QuestionResponse

Name Type Description
question Question A question to which an Answer is being added
value string The response the person gave, if the question type is “Paragraph” or if otherwise appropriate (e.g., if the question response was “Other”).
responses string[] An array of strings corresponding to the question response key(s) chosen by the Person who answered the Question.

Back to top...

Related Resources

Back to top...

Scenarios

{% include scenarios_helper_intro.md %}

Scenario: Creating a new canvass (POST)

Posting to the record canvass helper endpoint will allow you to create a new canvass and the associated answers and/or taggings in one operation. The response is the attendance that was created. While each implementing system will require different fields, any optional fields not included in a post operation should not be set at all by the receiving system, or should be set to default values.

Request

POST https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316c29/record_canvass_helper

Header:
OSDI-API-Token:[your api key here]

{
    "canvass": {
      "origin_system": "OSDI Sample System",
      "action_date": "2014-03-18T11:02:15Z",
      "contact_type": "in-person",
      "input_type": "mobile",
      "success": true,
      "status_code": "",
      "canvasser": "https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316444"
    },
    "add_answers": [
      {
        "question": ""https://osdi-sample-system.org/api/v1/questions/c945d6fe-929e-11e3-a2e9-12313d316c29",
        "value": "He's not sure"        
      },
      {
        "question": "https://osdi-sample-system.org/api/v1/questions/c945d6fe-929e-11e3-a2e9-12313d316c33",
        "responses": [
          "Y"
        ]        
      }
    ],
    "add_tags": [
      "wants_yard_sign",
      "will_volunteer"
    ]
}

Response

200 OK

Content-Type: application/hal+json
Cache-Control: max-age=0, private, must-revalidate

{
    "identifiers": [
        "osdi_sample_system:d91b4b2e-ae0e-4cd3-9ed7-d0ec501b0bc3",
        "foreign_system:1"
    ],
    "origin_system": "OSDI Sample System",
    "created_date": "2014-03-20T21:04:31Z",
    "modified_date": "2014-03-20T21:04:31Z",
    "action_date": "2014-03-18T11:02:15Z",
    "contact_type": "in-person",
    "input_type": "mobile",
    "success": true,
    "status_code": "",
    "_links": {
        "self": {
            "href": "https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316c29/canvasses/d91b4b2e-ae0e-4cd3-9ed7-d0ec501b0bc3"
        },
        "osdi:canvasser": {
            "href": "https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316444"
        },
        "osdi:target": {
            "href": "https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316c29"
        },
        "osdi:answers": {
            "href": "https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316c29/canvasses/d91b4b2e-ae0e-4cd3-9ed7-d0ec501b0bc3/answers"
        },
        "osdi:taggings": {
            "href": "https://osdi-sample-system.org/api/v1/people/c945d6fe-929e-11e3-a2e9-12313d316c29/canvasses/d91b4b2e-ae0e-4cd3-9ed7-d0ec501b0bc3/taggings"
        }
    }
}

Back to top...