Applications

The various applications endpoints relate to individual job applications within Pinpoint.

Anonymized screening

📘

Anonymized screening

If a job is marked as anonymized screening then candidate information will be concealed, much in the same way that it is within the Pinpoint admin interface.

Structured Section Responses

An application's structured section responses should be requested with its included answers for full context.
eg. api/v1/applications/{#application.id}/?include=structured_section_responses.answers


{
    "data": {
        "id": "238",
        "type": "applications",
        "attributes": {},
        "relationships": {

            "answers": {
                "meta": {
                    "included": false
                }
            },
            "structured_section_responses": {
                "data": [
                    {
                        "type": "structured_section_responses",
                        "id": "1"
                    }
                ]
            }
        }
    },
    "included": [
        {
            "id": "1",
            "type": "structured_section_responses",
            "attributes": {
                "date_from_answer": "2005-01-01",
                "date_to_answer": "2010-04-01",
                "position": null,
                "created_at": "2025-02-19T09:25:04+00:00",
                "updated_at": "2025-02-19T09:25:05+00:00"
            },
            "relationships": {
                "answers": {
                    "data": [
                        {
                            "type": "answers",
                            "id": "977"
                        },
                        {
                            "type": "answers",
                            "id": "978"
                        },
                        {
                            "type": "answers",
                            "id": "979"
                        },
                        {
                            "type": "answers",
                            "id": "980"
                        },
                        {
                            "type": "answers",
                            "id": "981"
                        }
                    ]
                }
            }
        },
        {
            "id": "977",
            "type": "answers",
            "attributes": {
                "title": "Job title",
                "additional_information": "",
                "boolean_answer": null,
                "number_answer": null,
                "document_answer": null,
                "question_type": "short_text",
                "date_answer": null,
                "url_answer": null,
                "date_from_answer": null,
                "date_to_answer": null,
                "multiple_choice_answer": [],
                "created_at": "2025-02-19T09:25:04+00:00",
                "updated_at": "2025-02-19T09:25:04+00:00",
                "text_answer": "Head Film Buff"
            },
            "relationships": {
                "question": {
                    "meta": {
                        "included": false
                    }
                },
                "answer_options": {
                    "meta": {
                        "included": false
                    }
                }
            }
        },
        {
            "id": "978",
            "type": "answers",
            "attributes": {
                "title": "Company",
                "additional_information": "",
                "boolean_answer": null,
                "number_answer": null,
                "document_answer": null,
                "question_type": "short_text",
                "date_answer": null,
                "url_answer": null,
                "date_from_answer": null,
                "date_to_answer": null,
                "multiple_choice_answer": [],
                "created_at": "2025-02-19T09:25:04+00:00",
                "updated_at": "2025-02-19T09:25:04+00:00",
                "text_answer": "Victorville Film Archive"
            },
            "relationships": {
                "question": {
                    "meta": {
                        "included": false
                    }
                },
                "answer_options": {
                    "meta": {
                        "included": false
                    }
                }
            }
        },
        {
            "id": "979",
            "type": "answers",
            "attributes": {
                "title": "Description",
                "additional_information": "",
                "boolean_answer": null,
                "number_answer": null,
                "document_answer": null,
                "question_type": "long_text",
                "date_answer": null,
                "url_answer": null,
                "date_from_answer": null,
                "date_to_answer": null,
                "multiple_choice_answer": [],
                "created_at": "2025-02-19T09:25:04+00:00",
                "updated_at": "2025-02-19T09:25:04+00:00",
                "text_answer": "Worked in archiving and film buffery"
            },
            "relationships": {
                "question": {
                    "meta": {
                        "included": false
                    }
                },
                "answer_options": {
                    "meta": {
                        "included": false
                    }
                }
            }
        },
        {
            "id": "980",
            "type": "answers",
            "attributes": {
                "title": "Location",
                "additional_information": "",
                "boolean_answer": null,
                "number_answer": null,
                "document_answer": null,
                "question_type": "short_text",
                "date_answer": null,
                "url_answer": null,
                "date_from_answer": null,
                "date_to_answer": null,
                "multiple_choice_answer": [],
                "created_at": "2025-02-19T09:25:04+00:00",
                "updated_at": "2025-02-19T09:25:04+00:00",
                "text_answer": "Victorville, USA"
            },
            "relationships": {
                "question": {
                    "meta": {
                        "included": false
                    }
                },
                "answer_options": {
                    "meta": {
                        "included": false
                    }
                }
            }
        },
        {
            "id": "981",
            "type": "answers",
            "attributes": {
                "title": "Employment start end date",
                "additional_information": "",
                "boolean_answer": null,
                "number_answer": null,
                "document_answer": null,
                "question_type": "date_range",
                "date_answer": null,
                "url_answer": null,
                "date_from_answer": "2005-01-01",
                "date_to_answer": "2010-04-01",
                "multiple_choice_answer": [],
                "created_at": "2025-02-19T09:25:04+00:00",
                "updated_at": "2025-02-19T09:25:04+00:00",
                "text_answer": null
            },
            "relationships": {
                "question": {
                    "meta": {
                        "included": false
                    }
                },
                "answer_options": {
                    "meta": {
                        "included": false
                    }
                }
            }
        }
    ]
}