### Get Company Key Source: https://ru.yougile.com/api-v2# Example of obtaining an API key for a company using curl. ```curl curl --location 'http://localhost:8001/api-v2/auth/keys' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data-raw '{ "login": "dev@yougile.com", "password": "123" , "companyId": "44eccf40-a027-4d06-b5c2-18f4c02bb026" }' ``` -------------------------------- ### Create Project Source: https://ru.yougile.com/api-v2# Example of creating a new project using curl. ```curl curl --location 'http://localhost:8001/api-v2/projects' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer -VRKgqzejQhROjMTmOk3h20Rnj6XKkwBFx5GkK1fA34TvLFmiVdmEPt3-ygeWfiy' \ --data '{ "title": "ั‚ะตัั‚", "users": {"80eed1bd-eda3-4991-ac17-09d28566749d": "admin"} }' ``` -------------------------------- ### API Endpoint Structure Source: https://ru.yougile.com/api-v2# The base structure for making HTTPS requests to the YouGile API v2. ```http https://yougile.com/api-v2/{resource} ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.