{ "opencollection": "1.0.0", "info": { "name": "Skilljar Assets Domains > Users > Signup Fields API", "version": "1.0.0" }, "items": [ { "info": { "name": "Domains > Users > Signup Fields", "type": "folder" }, "items": [ { "info": { "name": "domains_users_signup_fields_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/domains/:domain_name/users/:user_id/signup-fields", "params": [ { "name": "domain_name", "value": "", "type": "path" }, { "name": "page", "value": "", "type": "query", "description": "A page number within the paginated result set." }, { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve a list of all signup field values for a user in the specified domain.\n\nReturns a paginated list of all signup field values that have been set for the user." }, { "info": { "name": "domains_users_signup_fields_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/domains/:domain_name/users/:user_id/signup-fields", "params": [ { "name": "domain_name", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Set or update the value of a signup field for a user.\n\nIf the user does not have a value for the specified signup field, a new value will be created.\nIf a value already exists, it will be updated with the provided value." }, { "info": { "name": "domains_users_signup_fields_bulk_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/domains/:domain_name/users/:user_id/signup-fields-bulk", "params": [ { "name": "domain_name", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create or update multiple signup field values for a user.\n\nAllows setting or updating values for several signup fields in a single request.\nOnly the fields provided will be created or updated; unchanged fields are not included in the response.\nOn success, returns a 201 Created status and a Location header pointing to the list\n of all signup field values for the user." }, { "info": { "name": "domains_users_signup_fields_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/domains/:domain_name/users/:user_id/signup-fields/:signup_field_id", "params": [ { "name": "domain_name", "value": "", "type": "path" }, { "name": "signup_field_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve the value of a specific signup field for a user.\n\nReturns the value assigned to the specified signup field for the user." } ] } ], "bundled": true }