> For the complete documentation index, see [llms.txt](https://giremobility.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://giremobility.gitbook.io/api/v3/company.md).

# Company

## Get company information

> Get information about the company associated with the provided API key

```json
{"openapi":"3.0.0","info":{"title":"Gire Public API","version":"3.0"},"paths":{"/api/v3/me":{"get":{"description":"Get information about the company associated with the provided API key","operationId":"ApiController_getMe","parameters":[{"name":"x-api-token","in":"header","description":"Company API key","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Company info returned","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/MeHeadResponseDto"},{"$ref":"#/components/schemas/MeSubsidiaryResponseDto"}]}}}},"401":{"description":"UNAUTHORIZED","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UnauthorizedExceptionDto"}}}}},"summary":"Get company information","tags":["[API] Me"]}}},"components":{"schemas":{"MeHeadResponseDto":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"orgNumber":{"type":"string"},"address":{"type":"string"},"postalCode":{"type":"string"},"postalPlace":{"type":"string"},"region":{"type":"string","enum":["no","se","dk","nl"]},"createdAt":{"format":"date-time","type":"string"},"availableAddons":{"type":"array","items":{"$ref":"#/components/schemas/AvailableAddonsDto"}},"savedBookingInstructions":{"type":"array","items":{"$ref":"#/components/schemas/DriverInstructionResponseDto"}},"savedBookingAddresses":{"type":"array","items":{"$ref":"#/components/schemas/BookingAddressResponseDto"}},"savedBookingContacts":{"type":"array","items":{"$ref":"#/components/schemas/FavoriteContactResponseDto"}},"type":{"type":"string","enum":["head","subsidiary"]},"subsidiaries":{"type":"array","items":{"$ref":"#/components/schemas/MeSubsidiaryResponseDto"}}},"required":["id","name","orgNumber","address","postalCode","postalPlace","region","createdAt","availableAddons","savedBookingInstructions","savedBookingAddresses","savedBookingContacts","type","subsidiaries"]},"AvailableAddonsDto":{"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"productAvailability":{"type":"string","enum":["precise","express","value","standard"]}},"required":["name","description","productAvailability"]},"DriverInstructionResponseDto":{"type":"object","properties":{"text":{"type":"string"}},"required":["text"]},"BookingAddressResponseDto":{"type":"object","properties":{"address":{"type":"string"},"postalCode":{"type":"string"},"comment":{"type":"string"}},"required":["address","postalCode"]},"FavoriteContactResponseDto":{"type":"object","properties":{"name":{"type":"string"},"phone":{"type":"string"}},"required":["name","phone"]},"MeSubsidiaryResponseDto":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"orgNumber":{"type":"string"},"address":{"type":"string"},"postalCode":{"type":"string"},"postalPlace":{"type":"string"},"region":{"type":"string","enum":["no","se","dk","nl"]},"createdAt":{"format":"date-time","type":"string"},"availableAddons":{"type":"array","items":{"$ref":"#/components/schemas/AvailableAddonsDto"}},"savedBookingInstructions":{"type":"array","items":{"$ref":"#/components/schemas/DriverInstructionResponseDto"}},"savedBookingAddresses":{"type":"array","items":{"$ref":"#/components/schemas/BookingAddressResponseDto"}},"savedBookingContacts":{"type":"array","items":{"$ref":"#/components/schemas/FavoriteContactResponseDto"}},"type":{"type":"string","enum":["head","subsidiary"]}},"required":["id","name","orgNumber","address","postalCode","postalPlace","region","createdAt","availableAddons","savedBookingInstructions","savedBookingAddresses","savedBookingContacts","type"]},"UnauthorizedExceptionDto":{"type":"object","properties":{"errorType":{"type":"string","description":"Specific error type code","enum":["NOT_IMPLEMENTED","VALIDATION_ERROR","CANNOT_CANCEL_PUD","ADDRESS_NOT_FOUND","CROSS_BORDER_NOT_ALLOWED","PARTIAL_ADDRESS","BOOKING_BLOCKED","BOOKING_BAN","PRICE_ESTIMATE_UNAVAILABLE","INVALID_BOOKING_INTERVAL","NO_MATCH_FOUND","OUT_OF_AREA_NOT_ALLOWED","BOOKING_PRODUCT_NOT_AVAILABLE","BOOKING_ADDON_NOT_AVAILABLE_IN_BOOKING_PRODUCT","BOOKING_ADDON_NOT_AVAILABLE_IN_REGION","OUT_OF_OPENING_HOURS_NOT_ALLOWED","PRICE_ESTIMATE_CANNOT_FIND_HUB","PRICE_ESTIMATE_CANNOT_FIND_PRICE_RULES","PRICE_ESTIMATE_CANNOT_FIND_DRIVING_ROUTE","PRICE_ESTIMATE_CANNOT_FIND_FROM_HUB_ROUTE","PRICE_ESTIMATE_CANNOT_FIND_TO_HUB_ROUTE","WHITE_LABEL_JOB_NOT_FOUND","WHITE_LABEL_NOT_WHITE_LABEL","WHITE_LABEL_ALREADY_CANCELLED","WHITE_LABEL_PICKUP_STARTED","WHITE_LABEL_NO_LOCATION_ID","WHITE_LABEL_LOCATION_NOT_FOUND","WHITE_LABEL_CANCELLATION_NOT_ALLOWED","WHITE_LABEL_TOO_CLOSE_TO_PICKUP","THIRD_PARTY_API_ERROR","RECAPTCHA_VALIDATION_FAILED","RECAPTCHA_MISSING","PROFILE_INCOMPLETE"]},"statusCode":{"type":"number","description":"Status code","enum":[100,101,102,103,200,201,202,203,204,205,206,207,208,210,300,301,302,303,304,307,308,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,421,422,423,424,428,429,456,500,501,502,503,504,505,507,508]},"message":{"type":"string","description":"Error message"},"path":{"type":"string","description":"Request path"},"timestamp":{"type":"string","description":"Timestamp of the error"},"requestId":{"type":"string","description":"Unique request ID"},"data":{"type":"object","description":"Additional error data (optional)"}},"required":["errorType","statusCode","message","path","timestamp","requestId"]}}}}
```
