REST - CI/CD Glossary Definition
REST is an architectural style for HTTP APIs built on resources, standard methods, and stateless requests.
REST (Representational State Transfer) is an architectural style for APIs using HTTP methods, URLs as resources, and stateless requests. Most CI integration tests exercise REST endpoints with standard HTTP verbs.
REST maps operations onto HTTP verbs against resource URLs. Its statelessness makes each request independently testable, which fits the deterministic model CI needs.
Related guides
gRPC - CI/CD Glossary DefinitiongRPC: gRPC is a high-performance remote procedure call framework that uses HTTP/2 for transport and Protocol…
Endpoint - CI/CD Glossary DefinitionEndpoint: An endpoint is a specific URL and method combination that an API exposes to perform an operation, s…
Idempotent Request - CI/CD Glossary DefinitionIdempotent Request: An idempotent request produces the same result whether sent once or many times, so retrie…