{ "opencollection": "1.0.0", "info": { "name": "Public Api v3 Applicant Contact API", "version": "3.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Contact", "type": "folder" }, "items": [ { "info": { "name": "List Contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api-sandbox.yousign.app/v3/contacts", "params": [ { "name": "after", "value": "", "type": "query", "description": "After cursor (pagination)" }, { "name": "limit", "value": "", "type": "query", "description": "The limit of items count to retrieve." } ] }, "docs": "Returns the list of all the Contacts within your organization." }, { "info": { "name": "Create a Contact", "type": "http" }, "http": { "method": "POST", "url": "https://api-sandbox.yousign.app/v3/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Contact." }, { "info": { "name": "Get a Contact", "type": "http" }, "http": { "method": "GET", "url": "https://api-sandbox.yousign.app/v3/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "Contact Id" } ] }, "docs": "Retrieves a given Contact." }, { "info": { "name": "Update a Contact", "type": "http" }, "http": { "method": "PATCH", "url": "https://api-sandbox.yousign.app/v3/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "Contact Id" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a given Contact.\nAny parameters not provided are left unchanged.\n" }, { "info": { "name": "Delete a Contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://api-sandbox.yousign.app/v3/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "Contact Id" } ] }, "docs": "Deletes a given Contact." } ] } ], "bundled": true }