Submit user data to SEEK Pass using the correct endpoint based on credential type. For example, for the Education credential type the endpoint to call is: /api/partner/v1/add/education.json.
The staging and production environment endpoints are provided below:
export CREDENTIAL_TYPE=education export PAYLOAD='{ "id": "seek-pass-test-a9a4839f-53d9-4064-8b0b-1348113a33f8", "document_type": "open_cert", "credential_type": "education", "data": { "credential": { "full_name": "John Smith", "education_provider": "University of Melbourne", "course_name": "Bachelor of Commerce", "conferral_year": "2024", "has_majors": true, "majors": ["Finance"], "with_honours": true }, "document": "<OPEN_CERTS>" } }' curl -L $SEEK_PASS_URL/api/partner/v1/add/$CREDENTIAL_TYPE.json \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $ACCESS_TOKEN" \ --data "$PAYLOAD"
We recommend using a globally unique id (e.g. GUID), with a specific format such as <PREFIX>-<UUID>
for each user submission to ensure proper tracking and management of user data. The <PREFIX> is optional.
To download files (PDF, JPG, PNG, etc.) linked in the document field, ensure the following requirements are met:
Please contact our team to request domain whitelisting.
{
"redirect_uri": "https://app.seekpass-staging.com/partner/add/education#clientId=730845ab-0a0d-4f4d-9c98-d871755d3ce9&documentType=open_cert&content=d8a8eb57-c64f-4fc1-b362-b8df28fbf0a3"
}The redirect URL is generated with this format:
Note: CURL returns invalid \u0026 instead of &. Please replace \u0026 with & in the redirect URL. Other clients should not have this issue.
Once a user clicks the link and logs into the system, the data is associated only with them. If another user attempts to use the same link, they will be redirected to an error page.
Pending (incomplete) credential submissions are automatically deleted after 48 hours to ensure data privacy and security. The status of such submissions is canceled in Status API.
To update a credential with a new version of the same credential, partners must submit a new request with the same values for specific fields used in the original submission.
Scenarios where this may be necessary include:
For a newer version of the same credential to replace an existing one, the following fields need to remain the same:
course_name, conferral_year, majors (if applicable), with_honours (if applicable)test_name, test_providermicrocredential_name, issuer_nameThis will create a new Add to SEEK Pass request which must be sent to the user, allowing them to update their credential information.