{"id":15091344,"url":"https://github.com/aiveraiva/api-documents","last_synced_at":"2026-02-25T17:40:51.009Z","repository":{"id":200083190,"uuid":"704369516","full_name":"AiverAiva/api-documents","owner":"AiverAiva","description":"The documentation for my api","archived":false,"fork":false,"pushed_at":"2024-12-10T11:59:47.000Z","size":150,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T10:39:55.021Z","etag":null,"topics":["api-documentation","api-documentation-tool","openapi","openapi-specification","openapi3","redoc","redoc-cli","redocly"],"latest_commit_sha":null,"homepage":"https://docs.weikuwu.me/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AiverAiva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-13T05:48:34.000Z","updated_at":"2024-12-10T11:59:50.000Z","dependencies_parsed_at":"2024-09-19T18:30:53.252Z","dependency_job_id":"a6e37271-a2f9-4036-be21-628ade5ffdf3","html_url":"https://github.com/AiverAiva/api-documents","commit_stats":null,"previous_names":["aiveraiva/documents"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AiverAiva/api-documents","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AiverAiva%2Fapi-documents","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AiverAiva%2Fapi-documents/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AiverAiva%2Fapi-documents/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AiverAiva%2Fapi-documents/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AiverAiva","download_url":"https://codeload.github.com/AiverAiva/api-documents/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AiverAiva%2Fapi-documents/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269780617,"owners_count":24474686,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-documentation","api-documentation-tool","openapi","openapi-specification","openapi3","redoc","redoc-cli","redocly"],"created_at":"2024-09-25T10:40:31.438Z","updated_at":"2025-10-28T16:33:09.624Z","avatar_url":"https://github.com/AiverAiva.png","language":null,"readme":"# im lazy to finish this but i will\n\n```yaml\ntype: object\nproperties:\n  id: \n    description: The customer identifier string\n    readOnly: true\n    allOf:\n      - $ref: ./ResourceId.yaml\n  websiteId:\n    description: The website's ID\n    allOf:\n      - $ref: ./ResourceId.yaml\n  paymentToken:\n    type: string\n    writeOnly: true\n    description: |\n      A write-only payment token; if supplied, it will be converted into a\n      payment instrument and be set as the `defaultPaymentInstrument`. The\n      value of this property will override the `defaultPaymentInstrument`\n      in the case that both are supplied. The token may only be used once\n      before it is expired.\n  defaultPaymentInstrument:\n    $ref: ./PaymentInstrument.yaml\n  createdTime:\n    description: The customer created time\n    allOf:\n      - $ref: ./ServerTimestamp.yaml\n  updatedTime:\n    description: The customer updated time\n    allOf:\n      - $ref: ./ServerTimestamp.yaml\n  tags:\n    description: A list of customer's tags\n    readOnly: true\n    type: array\n    items:\n      $ref: ./Tags/Tag.yaml\n  revision:\n    description: \u003e\n      The number of times the customer data has been modified.\n\n      The revision is useful when analyzing webhook data to determine if the\n      change takes precedence over the current representation.\n    type: integer\n    readOnly: true\n  _links:\n    type: array\n    description: The links related to resource\n    readOnly: true\n    minItems: 3\n    items:\n      anyOf:\n        - $ref: ./Links/SelfLink.yaml\n        - $ref: ./Links/NotesLink.yaml\n        - $ref: ./Links/DefaultPaymentInstrumentLink.yaml\n        - $ref: ./Links/LeadSourceLink.yaml\n        - $ref: ./Links/WebsiteLink.yaml\n  _embedded:\n    type: array\n    description: \u003e-\n      Any embedded objects available that are requested by the `expand`\n      querystring parameter.\n    readOnly: true\n    minItems: 1\n    items:\n      anyOf:\n        - $ref: ./Embeds/LeadSourceEmbed.yaml\n\n```\n\n```yaml\nget:\n  tags:\n    - Customers\n  summary: Retrieve a list of customers\n  operationId: GetCustomerCollection\n  description: |\n    You can have a markdown description here.\n  parameters:\n    - $ref: ../components/parameters/collectionLimit.yaml\n    - $ref: ../components/parameters/collectionOffset.yaml\n    - $ref: ../components/parameters/collectionFilter.yaml\n    - $ref: ../components/parameters/collectionQuery.yaml\n    - $ref: ../components/parameters/collectionExpand.yaml\n    - $ref: ../components/parameters/collectionFields.yaml\n  responses:\n    '200':\n      description: A list of Customers was retrieved successfully\n      headers:\n        Rate-Limit-Limit:\n          $ref: ../components/headers/Rate-Limit-Limit.yaml\n        Rate-Limit-Remaining:\n          $ref: ../components/headers/Rate-Limit-Remaining.yaml\n        Rate-Limit-Reset:\n          $ref: ../components/headers/Rate-Limit-Reset.yaml\n        Pagination-Total:\n          $ref: ../components/headers/Pagination-Total.yaml\n        Pagination-Limit:\n          $ref: ../components/headers/Pagination-Limit.yaml\n        Pagination-Offset:\n          $ref: ../components/headers/Pagination-Offset.yaml\n      content:\n        application/json:\n          schema:\n            type: array\n            items:\n              $ref: ../components/schemas/Customer.yaml\n        text/csv:\n          schema:\n            type: array\n            items:\n              $ref: ../components/schemas/Customer.yaml\n    '401':\n      $ref: ../components/responses/AccessForbidden.yaml\n  x-code-samples:\n    - lang: PHP\n      source:\n        $ref: ../code_samples/PHP/customers/get.php\npost:\n  tags:\n    - Customers\n  summary: Create a customer (without an ID)\n  operationId: PostCustomer\n  description: Another markdown description here.\n  requestBody:\n    $ref: ../components/requestBodies/Customer.yaml\n  responses:\n    '201':\n      $ref: ../components/responses/Customer.yaml\n    '401':\n      $ref: ../components/responses/AccessForbidden.yaml\n    '409':\n      $ref: ../components/responses/Conflict.yaml\n    '422':\n      $ref: ../components/responses/InvalidDataError.yaml\n  x-code-samples:\n    - lang: PHP\n      source:\n        $ref: ../code_samples/PHP/customers/post.php\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiveraiva%2Fapi-documents","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faiveraiva%2Fapi-documents","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiveraiva%2Fapi-documents/lists"}